Youtube Video Blocker
Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.
Was ist Youtube Video Blocker?
Youtube Video Blocker ist eine Chrome-Erweiterung, die von bmoses1124 entwickelt wurde, und ihr Hauptmerkmal ist "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.".
Erweiterungsscreenshots
Youtube Video Blocker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Youtube Video 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
An extension to block Youtube videos with undesired keywords. Enter the keywords into a settings page, and videos with those keywords in their titles will not appear.
Grundlegende Informationen zur Erweiterung
Name | |
ID | cbkaomkmifobpbdkhhiincnigngeckfc |
Offizielle URL | https://chrome.google.com/webstore/detail/youtube-video-blocker/cbkaomkmifobpbdkhhiincnigngeckfc |
Beschreibung | Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed. |
Dateigröße | 6.02 KB |
Installationsanzahl | 555 |
Aktuelle Version | 0.1 |
Letztes Update | 2020-12-23 |
Veröffentlichungsdatum | 2020-12-23 |
Bewertung | 1.00/5 Insgesamt 3 Bewertungen |
Entwickler | bmoses1124 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Video Blocker", "version": "0.1", "description": "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.", "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "block_youtube_vids.js" ] } ], "permissions": [ "storage" ], "options_page": "options.html", "manifest_version": 2 } |