Blitz Blocker

Disable access to selected websites.

Was ist Blitz Blocker?

Blitz Blocker ist eine Chrome-Erweiterung, die von Marko Polo entwickelt wurde, und ihr Hauptmerkmal ist "Disable access to selected websites.".

Erweiterungsscreenshots

screenshot

Blitz Blocker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Blitz Blocker-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

                        Blitz Blocker is an application meant to boost your productivity and overall mental health by disabling access to certain websites. Stay calm and have fun!                    

Grundlegende Informationen zur Erweiterung

Name Blitz Blocker Blitz Blocker
ID dhmpfkilnijpenaiehmhepkpmbapamcg
Offizielle URL https://chrome.google.com/webstore/detail/blitz-blocker/dhmpfkilnijpenaiehmhepkpmbapamcg
Beschreibung Disable access to selected websites.
Dateigröße 7.77 KB
Installationsanzahl 15
Aktuelle Version 1.2
Letztes Update 2014-02-13
Veröffentlichungsdatum 2014-02-13
Bewertung 4.86/5 Insgesamt 7 Bewertungen
Entwickler Marko Polo
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Blitz Blocker",
    "version": "1.2",
    "description": "Disable access to selected websites.",
    "icons": {
        "128": "icon_128.png"
    },
    "manifest_version": 2,
    "browser_action": {
        "default_title": "Blitz Blocker",
        "default_icon": "icon_128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/www.blic.rs\/*",
                "http:\/\/zena.blic.rs\/*",
                "http:\/\/www.kurir-info.rs\/*",
                "http:\/\/stil.kurir-info.rs\/*"
            ],
            "js": [
                "blitzblocker.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "icon_128.png"
    ]
}