Tabs auto close

The extension closes tabs matching regular expressions automatically after a timeout. Such as: https://yandex.zoom.us/j/*…

Tabs auto closeとは何ですか?

Tabs auto closeはsmeleshkinによって開発されたChromeの拡張機能で、その主な機能は「The extension closes tabs matching regular expressions automatically after a timeout. Such as: https://yandex.zoom.us/j/*…」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Tabs auto close拡張機能のCRXファイルをダウンロード

Tabs auto close拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        The extension closes tabs matching regular expressions automatically after a timeout.
Such as:
https://yandex.zoom.us/j/*
https://t.me/joinchat/*

And others at your discretion

Example regular expression for close zoom:
https:\/\/(.)*\.zoom.us\/j\/(.)*                    

拡張機能の基本情報

名前 Tabs auto close Tabs auto close
ID mbodbfopnnihkmkhcojmieknngpcalhf
公式URL https://chromewebstore.google.com/detail/tabs-auto-close/mbodbfopnnihkmkhcojmieknngpcalhf
説明 The extension closes tabs matching regular expressions automatically after a timeout. Such as: https://yandex.zoom.us/j/*…
ファイルサイズ 87.88 KB
インストール数 865
現在のバージョン 1.0.0
最終更新日 2022-10-31
公開日 2022-10-31
評価 4.80/5 合計 5 レビュー
開発者 smeleshkin
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/smeleshkin/tabs-auto-closer
ヘルプページのURL https://t.me/smeleshkin
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tabs auto close",
    "version": "1.0.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/broom16.png",
        "48": "icons\/broom48.png",
        "128": "icons\/broom128.png"
    }
}