Tabs Blacklist (Policies)

Automatically closes tabs whose URL is blacklisted.

Cos'è Tabs Blacklist (Policies)?

Tabs Blacklist (Policies) è un'estensione di Chrome sviluppata da landel.gilles, e la sua funzione principale è "Automatically closes tabs whose URL is blacklisted.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Tabs Blacklist (Policies)

Scarica i file di estensione Tabs Blacklist (Policies) in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Tabs Blacklist (Policies) Tabs Blacklist (Policies)
ID lacjncdcelhlkaahompnkndmdeiglepn
URL Ufficiale https://chromewebstore.google.com/detail/tabs-blacklist-policies/lacjncdcelhlkaahompnkndmdeiglepn
Descrizione Automatically closes tabs whose URL is blacklisted.
Dimensione del File 24.55 KB
Conteggio Installazioni 480
Versione Corrente 1.1.0
Ultimo Aggiornamento 2020-12-09
Data di Pubblicazione 2020-04-10
Sviluppatore landel.gilles
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Gilandel/Tab-Blacklist
Lingue Supportate 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"
}