Tabs Blacklist (Policies)

Automatically closes tabs whose URL is blacklisted.

Tabs Blacklist (Policies)란 무엇입니까?

Tabs Blacklist (Policies)은(는) landel.gilles에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically closes tabs whose URL is blacklisted."입니다.

확장 프로그램 스크린샷

screenshot

Tabs Blacklist (Policies) 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Tabs Blacklist (Policies) Tabs Blacklist (Policies)
ID lacjncdcelhlkaahompnkndmdeiglepn
공식 URL https://chromewebstore.google.com/detail/tabs-blacklist-policies/lacjncdcelhlkaahompnkndmdeiglepn
설명 Automatically closes tabs whose URL is blacklisted.
파일 크기 24.55 KB
설치 횟수 480
현재 버전 1.1.0
최근 업데이트 2020-12-09
출시 날짜 2020-04-10
개발자 landel.gilles
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Gilandel/Tab-Blacklist
지원되는 언어 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"
}