Black Box Content Hider

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

Apa itu Black Box Content Hider?

Black Box Content Hider adalah ekstensi Chrome yang dikembangkan oleh https://www.spetnik.com, dan fitur utamanya adalah "Covers up web content (including video) with a black box".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Black Box Content Hider

Unduh file ekstensi Black Box Content Hider dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama Black Box Content Hider Black Box Content Hider
ID chnfcckibdbgjabhojhmdcnbiiogbleb
URL Resmi https://chromewebstore.google.com/detail/black-box-content-hider/chnfcckibdbgjabhojhmdcnbiiogbleb
Deskripsi Covers up web content (including video) with a black box
Ukuran File 13.09 KB
Jumlah Instalasi 4,579
Versi Saat Ini 1.2
Terakhir Diperbarui 2017-02-07
Tanggal Publikasi 2017-02-07
Penilaian 2.75/5 Total 12 Penilaian
Pengembang https://www.spetnik.com
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    ]
}