multi-account-containers/webextension/manifest.json
luke crouch 50419d6bb1 re-integrate ContextualIdentityService into SDK code (#27)
* bring ContextualIdentityService back into SDK code
* restore show/hide functionality in WebExtension
* move identitiesState to SDK index to preserve it

When a user closes the pop-up, preserve the hidden tabs for the
containers, so they can still quickly re-open the tabs.
2017-01-03 15:06:10 +00:00

38 lines
985 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"manifest_version": 2,
"name": "Containers Experiment",
"version": "0.0.1",
"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": {
"id": "testpilot-containers@mozilla.org",
"strict_min_version": "50.0",
"update_url": "https://testpilot.firefox.com/files/containers/updates.json"
}
},
"homepage_url": "https://testpilot.firefox.com/",
"permissions": [
"cookies",
"tabs",
"cookies"
],
"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"
}
}