Blitzn

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

什么是Blitzn?

Blitzn是由Studio Something开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension that stops children googling something that ruins the mystery of christmas for them.”。

扩展截图

screenshot
screenshot
screenshot

下载Blitzn扩展crx文件

下载Blitzn扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Blitzn Blitzn
ID imphdkmejcbcdaipddhhicjenmlccono
官方URL https://chromewebstore.google.com/detail/blitzn/imphdkmejcbcdaipddhhicjenmlccono
简介 A chrome extension that stops children googling something that ruins the mystery of christmas for them.
文件大小 2.16 MB
安装次数 16
当前版本 1.1.0
更新时间 2016-12-14
上架时间 2016-12-14
评分 3.67/5 共3次评分
开发者 Studio Something
电子邮箱 [email protected]
付费类型 free
扩展官网 http://blitzn.io
支持的语言 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\/*"
    ]
}