Inspect and view changes in Detach Tab 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",
"version": "2.0.4",
"description": "Detach and Reattach tab with customizable keyboard shortcuts.",
"options_ui": {
"page": "options.html",
"browser_style": true
},
"developer": {
"name": "Claymont",
"url": "https://github.com/Claymont/detach-tab"
},
"permissions": [
"tabs"
],
"background": {
"scripts": [
"background.js"
]
},
"commands": {
"detach-tab": {
"suggested_key": {
"default": "Ctrl+Shift+Space"
},
"description": "Detaches active tab"
},
"reattach-tab": {
"suggested_key": {
"default": "Ctrl+Shift+V"
},
"description": "Reattaches last detached tab"
}
},
"applications": {
"gecko": {
"id": "claymont@mail.com_detach-tab",
"strict_min_version": "60.0"
}
}
}