barcode-utils/webextension-tabfocus/manifest.json

27 lines
502 B
JSON

{
"manifest_version": 2,
"name": "tabfocus",
"version": "0.1",
"description": "Allow tabs to request focus",
"permissions": [
"tabs",
"<all_urls>"
],
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["tabfocus_content.js"]
}
],
"background": {
"scripts": ["tabfocus_background.js"],
"persistent": false,
"type": "module"
},
"applications": {
"gecko": {
"id": "tabfocus@ccc-basel.ch",
"strict_min_version": "1.0"
}
}
}