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.”。
擴展截圖
下載Tabs Blacklist (Policies)擴展crx文件
下載Tabs Blacklist (Policies)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | lacjncdcelhlkaahompnkndmdeiglepn |
| 官方網址 | 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"
} | |