Close Other Tabs

Close all OTHER tabs!

What is Close Other Tabs?

Close Other Tabs is a Chrome extension developed by Delaney Garcia, and its main feature is "Close all OTHER tabs!".

Extension Screenshots

screenshot
screenshot

Download Close Other Tabs Extension CRX File

Download Close Other Tabs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        When chrome phased out the 'close other tabs' functionality, I was bummed... so we made this extension which re-enables that functionality.

When you click the extension icon, it should close all other tabs you have open. It will not close the active tab, nor will it close pinned tabs.

I hope this saves you time like it did for us!                    

Extension Basic Information

Name Close Other Tabs Close Other Tabs
ID ibhnkmpkhgoblaieahebifggipoccekf
Official URL https://chromewebstore.google.com/detail/close-other-tabs/ibhnkmpkhgoblaieahebifggipoccekf
Description Close all OTHER tabs!
File Size 17.36 KB
Installation Count 46
Current Version 1.02
Last Updated 2019-11-18
Publish Date 2019-11-15
Rating 5.00/5 Total 2 Ratings
Developer Delaney Garcia
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Close Other Tabs",
    "description": "Close all OTHER tabs!",
    "version": "1.02",
    "homepage_url": "https:\/\/foobar.com",
    "icons": {
        "128": "icon.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Close OTHER tabs!",
        "default_icon": "icon.png"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "inject.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "manifest_version": 2
}