Black Box Content Hider

Covers up web content (including video) with a black box

什么是Black Box Content Hider?

Black Box Content Hider是由https://www.spetnik.com开发的Chrome扩展程序,该扩展的主要功能是“Covers up web content (including video) with a black box”。

扩展截图

screenshot

下载Black Box Content Hider扩展crx文件

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

扩展使用说明

                        Don't want to see something on a web page? Just right-click and click "Add Black Box" to add a resizable black box that can cover any part of the page you wish. Great for hiding ugly people in online videos!                    

扩展基本信息

名称 Black Box Content Hider Black Box Content Hider
ID chnfcckibdbgjabhojhmdcnbiiogbleb
官方URL https://chromewebstore.google.com/detail/black-box-content-hider/chnfcckibdbgjabhojhmdcnbiiogbleb
简介 Covers up web content (including video) with a black box
文件大小 13.09 KB
安装次数 4,579
当前版本 1.2
更新时间 2017-02-07
上架时间 2017-02-07
评分 2.75/5 共12次评分
开发者 https://www.spetnik.com
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Black Box Content Hider",
    "description": "Covers up web content (including video) with a black box",
    "version": "1.2",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png"
        },
        "default_title": "Black Box Content Hider"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "blackbox.js"
            ],
            "css": [
                "blackbox.css"
            ],
            "run_at": "document_start"
        }
    ]
}