Keyword Blocker
Web Extension to block unwanted videos and channels
Was ist Keyword Blocker?
Keyword Blocker ist eine Chrome-Erweiterung, die von Rik Harink entwickelt wurde, und ihr Hauptmerkmal ist "Web Extension to block unwanted videos and channels".
Erweiterungsscreenshots
Keyword Blocker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Keyword Blocker-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
This Chrome extension can block YouTube videos or channels from view based on keywords you can specify. It features a very basic password protection and the block message is user-customizable. Originally this was developed for a person who is easily scared and needed to be protected from certain YouTube searches. Because there was no easy way to do this I developed this extension. The sourcecode is available on github at https://github.com/Meidor/keywordblocker
Grundlegende Informationen zur Erweiterung
Name | |
ID | pbgacppomjfpheddhifkdkklddnolnpg |
Offizielle URL | https://chrome.google.com/webstore/detail/keyword-blocker/pbgacppomjfpheddhifkdkklddnolnpg |
Beschreibung | Web Extension to block unwanted videos and channels |
Dateigröße | 84.9 KB |
Installationsanzahl | 9,000 |
Aktuelle Version | 2.2.1 |
Letztes Update | 2020-02-04 |
Veröffentlichungsdatum | 2020-02-04 |
Bewertung | 3.25/5 Insgesamt 99 Bewertungen |
Entwickler | Rik Harink |
Zahlungsart | free |
Erweiterungswebsite | https://www.keywordblocker.nl |
Hilfeseite URL | https://github.com/Meidor/keywordblocker/issues |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Web Extension to block unwanted videos and channels", "version": "2.2.1", "name": "Keyword Blocker", "manifest_version": 2, "icons": { "16": "img\/icon-16.png", "128": "img\/icon-128.png" }, "background": { "scripts": [ "background.bundle.js" ] }, "browser_action": { "default_icon": { "19": "img\/icon-19.png", "38": "img\/icon-38.png" }, "default_title": "Keyword Blocker", "default_popup": "popup.html" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "css": [ "styles\/content_script.css" ], "js": [ "content_script.bundle.js" ] } ], "permissions": [ "tabs", "storage", "contextMenus", "*:\/\/www.youtube.com\/*" ] } |