Tabs auto close

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

What is Tabs auto close?

Tabs auto close is a Chrome extension developed by smeleshkin, and its main feature is "The extension closes tabs matching regular expressions automatically after a timeout. Such as: https://yandex.zoom.us/j/*…".

Extension Screenshots

screenshot
screenshot
screenshot

Download Tabs auto close Extension CRX File

Download Tabs auto close extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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\/(.)*                    

Extension Basic Information

Name Tabs auto close Tabs auto close
ID mbodbfopnnihkmkhcojmieknngpcalhf
Official URL https://chromewebstore.google.com/detail/tabs-auto-close/mbodbfopnnihkmkhcojmieknngpcalhf
Description The extension closes tabs matching regular expressions automatically after a timeout. Such as: https://yandex.zoom.us/j/*…
File Size 87.88 KB
Installation Count 865
Current Version 1.0.0
Last Updated 2022-10-31
Publish Date 2022-10-31
Rating 4.80/5 Total 5 Ratings
Developer smeleshkin
Email [email protected]
Payment Type free
Extension Website https://github.com/smeleshkin/tabs-auto-closer
Help Page URL https://t.me/smeleshkin
Supported Languages 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"
    }
}