Auto Closer

An extension that just close the tabs you don't need.

什么是Auto Closer?

Auto Closer是由Mt.blue81开发的Chrome扩展程序,该扩展的主要功能是“An extension that just close the tabs you don't need.”。

扩展截图

screenshot

下载Auto Closer扩展crx文件

下载Auto Closer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        1. Add your site URL. (as a regular expression) option-image
2. Then open your site.
3. Site will close in a second.

It is mainly intended for closing tabs that are no longer needed when opening applications via a browser.
The delay to close can be changed in the extension option.                    

扩展基本信息

名称 Auto Closer Auto Closer
ID ligkadlbclfnnfgjmeplpebnjdgcembn
官方URL https://chromewebstore.google.com/detail/auto-closer/ligkadlbclfnnfgjmeplpebnjdgcembn
简介 An extension that just close the tabs you don't need.
文件大小 13.68 KB
安装次数 579
当前版本 2.1.0
更新时间 2023-10-30
上架时间 2021-01-13
评分 4.67/5 共3次评分
开发者 Mt.blue81
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/MtBlue81/auto-closer
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Auto Closer",
    "version": "2.1.0",
    "description": "An extension that just close the tabs you don't need.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}