Black Box Content Hider
Covers up web content (including video) with a black box
Wat is Black Box Content Hider?
Black Box Content Hider is een Chrome-extensie ontwikkeld door https://www.spetnik.com, en de belangrijkste functie is "Covers up web content (including video) with a black box".
Extensie Screenshots
Download het CRX-bestand van de extensie Black Box Content Hider
Download Black Box Content Hider-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | Black Box Content Hider |
ID | chnfcckibdbgjabhojhmdcnbiiogbleb |
Officiële URL | https://chromewebstore.google.com/detail/black-box-content-hider/chnfcckibdbgjabhojhmdcnbiiogbleb |
Beschrijving | Covers up web content (including video) with a black box |
Bestandsgrootte | 13.09 KB |
Aantal Installaties | 4,579 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2017-02-07 |
Publicatiedatum | 2017-02-07 |
Beoordeling | 2.75/5 Totaal 12 Beoordelingen |
Ontwikkelaar | https://www.spetnik.com |
Betalingswijze | free |
Ondersteunde Talen | 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" } ] } |