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
}