Tabs auto close

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

Tabs auto close là gì?

Tabs auto close là một tiện ích mở rộng Chrome được phát triển bởi smeleshkin, và tính năng chính của nó là "The extension closes tabs matching regular expressions automatically after a timeout. Such as: https://yandex.zoom.us/j/*…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tabs auto close

Tải xuống các tệp mở rộng Tabs auto close dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tabs auto close Tabs auto close
ID mbodbfopnnihkmkhcojmieknngpcalhf
URL Chính Thức https://chromewebstore.google.com/detail/tabs-auto-close/mbodbfopnnihkmkhcojmieknngpcalhf
Mô tả The extension closes tabs matching regular expressions automatically after a timeout. Such as: https://yandex.zoom.us/j/*…
Kích Thước Tệp 87.88 KB
Số Lần Cài Đặt 865
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2022-10-31
Ngày Phát Hành 2022-10-31
Đánh Giá 4.80/5 Tổng số 5 Đánh Giá
Nhà Phát Triển smeleshkin
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/smeleshkin/tabs-auto-closer
URL Trang Trợ Giúp https://t.me/smeleshkin
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}