Tabs Blacklist (Policies)
Automatically closes tabs whose URL is blacklisted.
Tabs Blacklist (Policies) क्या है?
Tabs Blacklist (Policies) landel.gilles द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically closes tabs whose URL is blacklisted."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tabs Blacklist (Policies) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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) |
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" } |