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"
        }
    ]
}