Blitzn

A chrome extension that stops children googling something that ruins the mystery of christmas for them.

Was ist Blitzn?

Blitzn ist eine Chrome-Erweiterung, die von Studio Something entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension that stops children googling something that ruins the mystery of christmas for them.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Blitzn-Erweiterungs-CRX-Datei herunterladen

Laden Sie Blitzn-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

                        Scared of your little ones finding out Santa’s big secret? Install BLITZN to make your browser free from all those Santa spoilers. With our content screening technology able to detect all unsuitable content when your child is browsing online, you don’t need to worry about stumbling on the big Christmas secret.                    

Grundlegende Informationen zur Erweiterung

Name Blitzn Blitzn
ID imphdkmejcbcdaipddhhicjenmlccono
Offizielle URL https://chromewebstore.google.com/detail/blitzn/imphdkmejcbcdaipddhhicjenmlccono
Beschreibung A chrome extension that stops children googling something that ruins the mystery of christmas for them.
Dateigröße 2.16 MB
Installationsanzahl 16
Aktuelle Version 1.1.0
Letztes Update 2016-12-14
Veröffentlichungsdatum 2016-12-14
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler Studio Something
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://blitzn.io
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Blitzn",
    "version": "1.1.0",
    "description": "A chrome extension that stops children googling something that ruins the mystery of christmas for them.",
    "icons": [],
    "background": {
        "scripts": [
            "scripts\/constants.js",
            "scripts\/helpers.js",
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "vendor\/jquery-3.1.1.min.js",
                "scripts\/constants.js",
                "scripts\/helpers.js",
                "scripts\/blocker.js",
                "scripts\/questions.js"
            ],
            "css": [
                "styles\/blocker.css"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "16": "assets\/blocker_off_16.png",
            "48": "assets\/blocker_off_48.png",
            "128": "assets\/blocker_off_128.png"
        },
        "default_popup": "popup.html",
        "default_title": "Blitzn"
    },
    "manifest_version": 2,
    "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self';",
    "web_accessible_resources": [
        "blocker.html",
        "assets\/*"
    ]
}