153 lines
3.7 KiB
JSON
153 lines
3.7 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Firefox Multi-Account Containers",
|
|
"version": "9.0.0",
|
|
"incognito": "not_allowed",
|
|
"description": "Multi-Account Containers helps you keep all the parts of your online life contained in different tabs. Custom labels and color-coded tabs help keep different activities — like online shopping, travel planning, or checking work email — separate.",
|
|
"icons": {
|
|
"48": "img/container-site-d-48.png",
|
|
"96": "img/container-site-d-96.png"
|
|
},
|
|
"applications": {
|
|
"gecko": {
|
|
"id": "vpn@mozilla.org",
|
|
"strict_min_version": "67.0"
|
|
}
|
|
},
|
|
"homepage_url": "https://github.com/mozilla/multi-account-containers#readme",
|
|
"permissions": [
|
|
"<all_urls>",
|
|
"activeTab",
|
|
"cookies",
|
|
"contextMenus",
|
|
"contextualIdentities",
|
|
"history",
|
|
"idle",
|
|
"management",
|
|
"nativeMessaging",
|
|
"storage",
|
|
"tabs",
|
|
"webRequestBlocking",
|
|
"webRequest",
|
|
"proxy",
|
|
|
|
"https://stage-vpn.guardian.nonprod.cloudops.mozgcp.net:443/*"
|
|
],
|
|
"optional_permissions": [
|
|
"bookmarks"
|
|
],
|
|
"commands": {
|
|
"_execute_browser_action": {
|
|
"suggested_key": {
|
|
"default": "Ctrl+Period",
|
|
"mac": "MacCtrl+Period"
|
|
},
|
|
"description": "Open containers panel"
|
|
},
|
|
"open_container_0": {
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+1"
|
|
},
|
|
"description": "Container Shortcut 1"
|
|
},
|
|
"open_container_1": {
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+2"
|
|
},
|
|
"description": "Container Shortcut 2"
|
|
},
|
|
"open_container_2": {
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+3"
|
|
},
|
|
"description": "Container Shortcut 3"
|
|
},
|
|
"open_container_3": {
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+4"
|
|
},
|
|
"description": "Container Shortcut 4"
|
|
},
|
|
"open_container_4": {
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+5"
|
|
},
|
|
"description": "Container Shortcut 5"
|
|
},
|
|
"open_container_5": {
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+6"
|
|
},
|
|
"description": "Container Shortcut 6"
|
|
},
|
|
"open_container_6": {
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+7"
|
|
},
|
|
"description": "Container Shortcut 7"
|
|
},
|
|
"open_container_7": {
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+8"
|
|
},
|
|
"description": "Container Shortcut 8"
|
|
},
|
|
"open_container_8": {
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+9"
|
|
},
|
|
"description": "Container Shortcut 9"
|
|
},
|
|
"open_container_9": {
|
|
"suggested_key": {
|
|
"default": "Ctrl+Shift+0"
|
|
},
|
|
"description": "Container Shortcut 10"
|
|
}
|
|
},
|
|
"browser_action": {
|
|
"browser_style": true,
|
|
"default_icon": "img/multiaccountcontainer-16.svg",
|
|
"default_title": "Multi-Account Containers",
|
|
"default_popup": "popup.html",
|
|
"theme_icons": [
|
|
{
|
|
"light": "img/multiaccountcontainer-16-dark.svg",
|
|
"dark": "img/multiaccountcontainer-16.svg",
|
|
"size": 32
|
|
}
|
|
]
|
|
},
|
|
"page_action": {
|
|
"browser_style": true,
|
|
"default_icon": "img/container-openin-16.svg",
|
|
"default_title": "Always open this in a Container",
|
|
"default_popup": "pageActionPopup.html",
|
|
"pinned": false,
|
|
"show_matches": ["*://*/*"]
|
|
},
|
|
"background": {
|
|
"page": "js/background/index.html"
|
|
},
|
|
"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"
|
|
],
|
|
"options_ui": {
|
|
"page": "options.html",
|
|
"browser_style": true
|
|
}
|
|
}
|