WhiteList

Enables blocking sites according to a blacklist or whitelist.

Was ist WhiteList?

WhiteList ist eine Chrome-Erweiterung, die von E. Goldberg entwickelt wurde, und ihr Hauptmerkmal ist "Enables blocking sites according to a blacklist or whitelist.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

WhiteList-Erweiterungs-CRX-Datei herunterladen

Laden Sie WhiteList-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension enables you to control which sites can be visited in the browser. You have the option to use a whitelist, which blocks all sites not listed, or a blacklist, which allows all sites except for the ones you list. 
When you install the extension, you will be asked to set an administrator password. This password will be used to change the blocking options in the future.
You can then go to the extension's options page, and select whether to enable blocking (it is disabled by default), whether to use a whitelist or a blacklist, and specify which URLs you want in the list. Click "save," and the sites will be blocked!                    

Grundlegende Informationen zur Erweiterung

Name WhiteList WhiteList
ID eajfidjagfdheejfooghbheaimkghofa
Offizielle URL https://chromewebstore.google.com/detail/whitelist/eajfidjagfdheejfooghbheaimkghofa
Beschreibung Enables blocking sites according to a blacklist or whitelist.
Dateigröße 24.64 KB
Installationsanzahl 611
Aktuelle Version 0.0.1
Letztes Update 2021-02-05
Veröffentlichungsdatum 2021-02-04
Bewertung 4.50/5 Insgesamt 2 Bewertungen
Entwickler E. Goldberg
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WhiteList",
    "description": "Enables blocking sites according to a blacklist or whitelist.",
    "version": "0.0.1",
    "options_page": "check-authenticated.html",
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' https:\/\/cdnjs.cloudflare.com; object-src 'self'",
    "icons": {
        "16": "icons\/favicon-16x16.png",
        "32": "icons\/favicon-32x32.png",
        "192": "icons\/android-chrome-192x192.png"
    },
    "browser_action": {
        "default_icon": "icons\/favicon-32x32.png"
    }
}