Tabs Blacklist (Policies)

Automatically closes tabs whose URL is blacklisted.

Wat is Tabs Blacklist (Policies)?

Tabs Blacklist (Policies) is een Chrome-extensie ontwikkeld door landel.gilles, en de belangrijkste functie is "Automatically closes tabs whose URL is blacklisted.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Tabs Blacklist (Policies)

Download Tabs Blacklist (Policies)-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Tabs Blacklist (Policies) Tabs Blacklist (Policies)
ID lacjncdcelhlkaahompnkndmdeiglepn
Officiële URL https://chromewebstore.google.com/detail/tabs-blacklist-policies/lacjncdcelhlkaahompnkndmdeiglepn
Beschrijving Automatically closes tabs whose URL is blacklisted.
Bestandsgrootte 24.55 KB
Aantal Installaties 480
Huidige Versie 1.1.0
Laatst Bijgewerkt 2020-12-09
Publicatiedatum 2020-04-10
Ontwikkelaar landel.gilles
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/Gilandel/Tab-Blacklist
Ondersteunde Talen 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"
}