Close Other Tabs

Close all OTHER tabs!

Close Other Tabsとは何ですか?

Close Other TabsはDelaney Garciaによって開発されたChromeの拡張機能で、その主な機能は「Close all OTHER tabs!」です。

拡張機能のスクリーンショット

screenshot
screenshot

Close Other Tabs拡張機能のCRXファイルをダウンロード

Close Other Tabs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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!                    

拡張機能の基本情報

名前 Close Other Tabs Close Other Tabs
ID ibhnkmpkhgoblaieahebifggipoccekf
公式URL https://chromewebstore.google.com/detail/close-other-tabs/ibhnkmpkhgoblaieahebifggipoccekf
説明 Close all OTHER tabs!
ファイルサイズ 17.36 KB
インストール数 46
現在のバージョン 1.02
最終更新日 2019-11-18
公開日 2019-11-15
評価 5.00/5 合計 2 レビュー
開発者 Delaney Garcia
支払い方法 free
対応言語 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
}