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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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
อีเมล [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"
    }
}