Keyword Blocker
Web Extension to block unwanted videos and channels
Hvad er Keyword Blocker?
Keyword Blocker er en Chrome-udvidelse udviklet af Rik Harink, og dens hovedfunktion er "Web Extension to block unwanted videos and channels".
Udvidelsesskærmbilleder
Download Keyword Blocker-udvidelses-CRX-fil
Download Keyword 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
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
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | pbgacppomjfpheddhifkdkklddnolnpg |
Officiel URL | https://chrome.google.com/webstore/detail/keyword-blocker/pbgacppomjfpheddhifkdkklddnolnpg |
Beskrivelse | Web Extension to block unwanted videos and channels |
Filstørrelse | 84.9 KB |
Antal Installationer | 9,000 |
Nuværende Version | 2.2.1 |
Senest Opdateret | 2020-02-04 |
Udgivelsesdato | 2020-02-04 |
Bedømmelse | 3.25/5 Samlet 99 Bedømmelser |
Udvikler | Rik Harink |
Betalingsmetode | free |
Udvidelseswebsted | https://www.keywordblocker.nl |
Hjælpeside-URL | https://github.com/Meidor/keywordblocker/issues |
Understøttede Sprog | 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\/*" ] } |