70 lines
1.5 KiB
JSON
70 lines
1.5 KiB
JSON
{
|
||
"manifest_version": 2,
|
||
"name": "Containers Experiment",
|
||
"version": "2.3.0",
|
||
|
||
"description": "Containers works by isolating cookie jars using separate origin-attributes defined visually by colored ‘Container Tabs’. This add-on is a modified version of the containers feature for Firefox Test Pilot.",
|
||
"icons": {
|
||
"48": "img/container-site-d-48.png",
|
||
"96": "img/container-site-d-96.png"
|
||
},
|
||
|
||
"applications": {
|
||
"gecko": {
|
||
"strict_min_version": "51.0",
|
||
"update_url": "https://testpilot.firefox.com/files/@testpilot-containers/updates.json"
|
||
}
|
||
},
|
||
|
||
"homepage_url": "https://testpilot.firefox.com/",
|
||
|
||
"permissions": [
|
||
"<all_urls>",
|
||
"activeTab",
|
||
"cookies",
|
||
"contextMenus",
|
||
"contextualIdentities",
|
||
"history",
|
||
"idle",
|
||
"storage",
|
||
"tabs",
|
||
"webRequestBlocking",
|
||
"webRequest"
|
||
],
|
||
|
||
"commands": {
|
||
"_execute_browser_action": {
|
||
"suggested_key": {
|
||
"default": "Ctrl+Period"
|
||
},
|
||
"description": "Open containers panel"
|
||
}
|
||
},
|
||
|
||
"browser_action": {
|
||
"browser_style": true,
|
||
"default_icon": {
|
||
"16": "img/container-site-d-24.png",
|
||
"32": "img/container-site-d-48.png"
|
||
},
|
||
"default_title": "Containers",
|
||
"default_popup": "popup.html"
|
||
},
|
||
|
||
"background": {
|
||
"scripts": ["background.js"]
|
||
},
|
||
|
||
"content_scripts": [
|
||
{
|
||
"matches": ["<all_urls>"],
|
||
"js": ["js/content-script.js"],
|
||
"css": ["css/content.css"],
|
||
"run_at": "document_start"
|
||
}
|
||
],
|
||
|
||
"web_accessible_resources": [
|
||
"/img/container-site-d-24.png"
|
||
]
|
||
}
|