Tabs Blacklist (Policies)

Automatically closes tabs whose URL is blacklisted.

Tabs Blacklist (Policies) là gì?

Tabs Blacklist (Policies) là một tiện ích mở rộng Chrome được phát triển bởi landel.gilles, và tính năng chính của nó là "Automatically closes tabs whose URL is blacklisted.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tabs Blacklist (Policies)

Tải xuống các tệp mở rộng Tabs Blacklist (Policies) 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

                        This extension:
- Loads configuration from Chrome's policies (Registry for Windows, JSON file for Unix and ChromeOS and MCX for Mac)
- Detects if tabs' URLs are blacklisted through 3 matching modes:
    - exact: validates if the tab's URL is exactly equals to one blacklisted URL,
    - contains: validates if the tab's URL contains one blacklisted text,
    - regexp or regular expression: validates if the tab's URL matches one blacklisted pattern
- Automatically closes tabs whose URL is blacklisted (on extension startup, on tab creation/update by another extension or/and by the user)
- After closing, tries to refocus on previous active tab
- Includes a debug page (can be de/activated through Chrome's policies)

For more information about configuration, see website page.                    

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

Tên Tabs Blacklist (Policies) Tabs Blacklist (Policies)
ID lacjncdcelhlkaahompnkndmdeiglepn
URL Chính Thức https://chromewebstore.google.com/detail/tabs-blacklist-policies/lacjncdcelhlkaahompnkndmdeiglepn
Mô tả Automatically closes tabs whose URL is blacklisted.
Kích Thước Tệp 24.55 KB
Số Lần Cài Đặt 480
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2020-12-09
Ngày Phát Hành 2020-04-10
Nhà Phát Triển landel.gilles
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Gilandel/Tab-Blacklist
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tabs Blacklist (Policies)",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "Automatically closes tabs whose URL is blacklisted.",
    "icons": {
        "16": "icons\/tbl16.png",
        "48": "icons\/tbl48.png",
        "128": "icons\/tbl128.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "storage": {
        "managed_schema": "schema.json"
    },
    "homepage_url": "https:\/\/github.com\/Gilandel\/Tab-Blacklist"
}