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 هو إضافة Chrome تم تطويرها بواسطة smeleshkin، والميزة الرئيسية لها هي "The extension closes tabs matching regular expressions automatically after a timeout. Such as: https://yandex.zoom.us/j/*…".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Tabs auto close

قم بتنزيل ملفات الامتداد Tabs auto close بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
    }
}