Black Box Content Hider
Covers up web content (including video) with a black box
Cos'è Black Box Content Hider?
Black Box Content Hider è un'estensione di Chrome sviluppata da https://www.spetnik.com, e la sua funzione principale è "Covers up web content (including video) with a black box".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Black Box Content Hider
Scarica i file di estensione Black Box Content Hider in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
                        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!                     Informazioni di Base sull'Estensione
| Nome |   |  
| ID | chnfcckibdbgjabhojhmdcnbiiogbleb | 
| URL Ufficiale | https://chromewebstore.google.com/detail/black-box-content-hider/chnfcckibdbgjabhojhmdcnbiiogbleb | 
| Descrizione | Covers up web content (including video) with a black box | 
| Dimensione del File | 13.09 KB | 
| Conteggio Installazioni | 4,579 | 
| Versione Corrente | 1.2 | 
| Ultimo Aggiornamento | 2017-02-07 | 
| Data di Pubblicazione | 2017-02-07 | 
| Valutazione | 2.75/5 Totale 12 Valutazioni | 
| Sviluppatore | https://www.spetnik.com | 
| Tipo di Pagamento | free | 
| Lingue Supportate | 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"
        }
    ]
}  |  |