Black Box Content Hider

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

Qu'est-ce que Black Box Content Hider ?

Black Box Content Hider est une extension Chrome développée par https://www.spetnik.com, et sa fonction principale est "Covers up web content (including video) with a black box".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Black Box Content Hider

Téléchargez les fichiers d'extension Black Box Content Hider au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Black Box Content Hider Black Box Content Hider
ID chnfcckibdbgjabhojhmdcnbiiogbleb
URL Officiel https://chromewebstore.google.com/detail/black-box-content-hider/chnfcckibdbgjabhojhmdcnbiiogbleb
Description Covers up web content (including video) with a black box
Taille du Fichier 13.09 KB
Nombre d'Installations 4,579
Version Actuelle 1.2
Dernière Mise à Jour 2017-02-07
Date de Publication 2017-02-07
Évaluation 2.75/5 Total 12 Évaluations
Développeur https://www.spetnik.com
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}