Blacklist

Blacklist is a very simple website blocker designed for personal use.

Was ist Blacklist?

Blacklist ist eine Chrome-Erweiterung, die von http://rahulgi.com entwickelt wurde, und ihr Hauptmerkmal ist "Blacklist is a very simple website blocker designed for personal use.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Blacklist-Erweiterungs-CRX-Datei herunterladen

Laden Sie Blacklist-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 is a very simple extension for Google Chrome. When you find yourself on a website that is taking too much of your time, simply hit the Blacklist button in the upper right corner of Chrome and you will be blocked from visiting that site while Blacklist remains active. To resume visiting any site blocked by Blacklist, you must visit the site, click the Blacklist extension button in the upper right corner of the browser, and then click the "unlist" button. You will be forced to wait for 15 seconds before the site is unlisted and you are redirected to the root URL.                    

Grundlegende Informationen zur Erweiterung

Name Blacklist Blacklist
ID jbpccandodannohfaoncogijbkfcmpgo
Offizielle URL https://chrome.google.com/webstore/detail/blacklist/jbpccandodannohfaoncogijbkfcmpgo
Beschreibung Blacklist is a very simple website blocker designed for personal use.
Dateigröße 575 KB
Installationsanzahl 34,267
Aktuelle Version 0.93
Letztes Update 2019-12-09
Veröffentlichungsdatum 2019-12-09
Bewertung 3.71/5 Insgesamt 104 Bewertungen
Entwickler http://rahulgi.com
Zahlungsart free
Erweiterungswebsite https://rahulgi.com/blacklist
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Blacklist",
    "version": "0.93",
    "manifest_version": 2,
    "description": "Blacklist is a very simple website blocker designed for personal use.",
    "icons": {
        "16": "icon.16.png",
        "48": "icon.48.png",
        "128": "icon.128.png"
    },
    "homepage_url": "http:\/\/rahulgi.github.com\/Blacklist",
    "browser_action": {
        "default_icon": "icon.48.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "blockedSite.html"
    ],
    "permissions": [
        "*:\/\/*\/*",
        "tabs",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "webNavigation"
    ],
    "incognito": "split"
}