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