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
官方網址 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
}