Black Box Content Hider
Covers up web content (including video) with a black box
What is Black Box Content Hider?
Black Box Content Hider is a Chrome extension developed by https://www.spetnik.com, and its main feature is "Covers up web content (including video) with a black box".
Extension Screenshots
Download Black Box Content Hider Extension CRX File
Download Black Box Content Hider extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | Black Box Content Hider |
ID | chnfcckibdbgjabhojhmdcnbiiogbleb |
Official URL | https://chromewebstore.google.com/detail/black-box-content-hider/chnfcckibdbgjabhojhmdcnbiiogbleb |
Description | Covers up web content (including video) with a black box |
File Size | 13.09 KB |
Installation Count | 4,579 |
Current Version | 1.2 |
Last Updated | 2017-02-07 |
Publish Date | 2017-02-07 |
Rating | 2.75/5 Total 12 Ratings |
Developer | https://www.spetnik.com |
Payment Type | free |
Supported Languages | 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" } ] } |