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
Eメール [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"
            ]
        }
    ]
}