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.
Hvad er Youtube Video Blocker?
Youtube Video Blocker er en Chrome-udvidelse udviklet af bmoses1124, og dens hovedfunktion er "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.".
Udvidelsesskærmbilleder
Download Youtube Video Blocker-udvidelses-CRX-fil
Download Youtube Video Blocker-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | cbkaomkmifobpbdkhhiincnigngeckfc |
Officiel URL | https://chrome.google.com/webstore/detail/youtube-video-blocker/cbkaomkmifobpbdkhhiincnigngeckfc |
Beskrivelse | Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed. |
Filstørrelse | 6.02 KB |
Antal Installationer | 555 |
Nuværende Version | 0.1 |
Senest Opdateret | 2020-12-23 |
Udgivelsesdato | 2020-12-23 |
Bedømmelse | 1.00/5 Samlet 3 Bedømmelser |
Udvikler | bmoses1124 |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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 } |