Inspect and view changes in Detach Tab: Button, Menu & Shortcut Key source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Detach Tab Button",
"version": "1.10",
"description": "Detach the current tab from a toolbar button or the tab's right-click menu.",
"author": "Dan Caprine",
"icons": {
"32": "icons/detach_tab_icon_32.png",
"48": "icons/detach_tab_icon_48.png",
"64": "icons/detach_tab_icon_64.png",
"96": "icons/detach_tab_icon_96.png",
"128": "icons/detach_tab_icon_128.png"
},
"permissions": [
"activeTab",
"tabs",
"contextMenus",
"storage"
],
"browser_action": {
"default_icon": {
"32": "icons/detach_tab_icon_32.png",
"48": "icons/detach_tab_icon_48.png",
"64": "icons/detach_tab_icon_64.png",
"96": "icons/detach_tab_icon_96.png",
"128": "icons/detach_tab_icon_128.png"
},
"default_title": "Detach Tab"
},
"commands": {
"detach-tab": {
"suggested_key": {
"default": "Ctrl+Shift+Space"
},
"description": "Detach the currently active tab."
}
},
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"browser_specific_settings": {
"gecko": {
"id": "{8dc9faa5-9e51-4126-bec1-4c147975d42c}"
}
}
}