Black Box Content Hider
Covers up web content (including video) with a black box
Was ist Black Box Content Hider?
Black Box Content Hider ist eine Chrome-Erweiterung, die von https://www.spetnik.com entwickelt wurde, und ihr Hauptmerkmal ist "Covers up web content (including video) with a black box".
Erweiterungsscreenshots
Black Box Content Hider-Erweiterungs-CRX-Datei herunterladen
Laden Sie Black Box Content Hider-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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! Grundlegende Informationen zur Erweiterung
| Name | |
| ID | chnfcckibdbgjabhojhmdcnbiiogbleb |
| Offizielle URL | https://chromewebstore.google.com/detail/black-box-content-hider/chnfcckibdbgjabhojhmdcnbiiogbleb |
| Beschreibung | Covers up web content (including video) with a black box |
| Dateigröße | 13.09 KB |
| Installationsanzahl | 4,579 |
| Aktuelle Version | 1.2 |
| Letztes Update | 2017-02-07 |
| Veröffentlichungsdatum | 2017-02-07 |
| Bewertung | 2.75/5 Insgesamt 12 Bewertungen |
| Entwickler | https://www.spetnik.com |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
]
} | |