Black Box Content Hider

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

O que é Black Box Content Hider?

Black Box Content Hider é uma extensão do Chrome desenvolvida por https://www.spetnik.com, e sua principal característica é "Covers up web content (including video) with a black box".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Black Box Content Hider

Baixe arquivos de extensão Black Box Content Hider no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Black Box Content Hider Black Box Content Hider
ID chnfcckibdbgjabhojhmdcnbiiogbleb
URL Oficial https://chromewebstore.google.com/detail/black-box-content-hider/chnfcckibdbgjabhojhmdcnbiiogbleb
Descrição Covers up web content (including video) with a black box
Tamanho do Arquivo 13.09 KB
Contagem de Instalações 4,579
Versão Atual 1.2
Última Atualização 2017-02-07
Data de Publicação 2017-02-07
Classificação 2.75/5 Total de 12 Avaliações
Desenvolvedor https://www.spetnik.com
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}