Inspect and view changes in Close Tabs Shortcuts 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": "Close Tabs Shortcuts",
"version": "1.2.2",
"description": "Adds keyboard shortcuts for closing all not active tabs, all to the left of the active one, all to the right",
"background": {
"scripts": [
"utils.js",
"background.js"
]
},
"commands": {
"close-other-tabs": {
"suggested_key": {
"default": "Alt+W"
},
"description": "Close Other Tabs"
},
"close-left-tabs": {
"suggested_key": {
"default": "Alt+Shift+F1"
},
"description": "Close Left Tabs"
},
"close-right-tabs": {
"suggested_key": {
"default": "Alt+Shift+F2"
},
"description": "Close Right Tabs"
}
},
"permissions": [
"tabs"
]
}