"Close All Background Tabs" is a lightweight Mozilla extension designed to streamline your browsing experience. With a single click, it efficiently clears away all inactive tabs, leaving your active tab undisturbed.
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 all background tabs",
"version": "1.0.1",
"description": "An extension to close all inactive tabs.",
"author": "Bozidar Atanasovski",
"content_scripts": [
{
"matches": [
"<all_urls>"
]
}
],
"browser_action": {
"default_icon": {
"48": "/icons/icon-48.png"
},
"default_popup": "popup.html",
"default_title": "Close Tabs"
},
"browser_specific_settings": {
"gecko": {
"id": "{84cc28f3-ceca-40e6-adf9-dc02a82053af}"
}
}
}