multi-account-containers/webextension/manifest.json
Tobias Laundal 36b33c90cb Add key combination to open new tab in the same container.
While waiting for Bugzilla bug Bug 1406371 this should be a nice workaround.
The keys Ctrl+Y are now bound to create a new tab in the same container as the current tab.
2017-11-17 17:05:46 +01:00

73 lines
1.6 KiB
JSON

{
"manifest_version": 2,
"name": "Firefox Multi-Account Containers",
"version": "4.1.0",
"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": {
"strict_min_version": "53.0"
}
},
"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",
"mac": "MacCtrl+Period"
},
"description": "Open containers panel"
},
"new-tab-container": {
"suggested_key": {
"default": "Ctrl+Y"
},
"description": "Open new tab with the same container"
}
},
"browser_action": {
"browser_style": true,
"default_icon": "img/container-site.svg",
"default_title": "Multi-Account Containers",
"default_popup": "popup.html"
},
"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"
]
}