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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The extension closes tabs matching regular expressions automatically after a timeout. Such as: https://yandex.zoom.us/j/*…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tabs auto close एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
    }
}