Youtube Title Blacklist
Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.
Co je Youtube Title Blacklist?
Youtube Title Blacklist je rozšíření Chrome vyvinuté http://creativebuilds.io, a jeho hlavní funkcí je „Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Youtube Title Blacklist
Stáhněte si soubory rozšíření Youtube Title Blacklist ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
A simple extension designed to block videos from showing up in your home feed on YouTube that contain certain keywords that you set. Useful for hiding content you don't want kids to be seeing.
Základní Informace o Rozšíření
Název | |
ID | gcmgilkgahoblmnolplncmmkhmmbddfn |
Oficiální URL | https://chrome.google.com/webstore/detail/youtube-title-blacklist/gcmgilkgahoblmnolplncmmkhmmbddfn |
Popis | Block videos from showing up in your home feed on YouTube that contain certain keywords that you set. |
Velikost souboru | 296 KB |
Počet instalací | 423 |
Aktuální Verze | 1.0.2 |
Poslední Aktualizace | 2020-12-12 |
Datum Vydání | 2020-12-09 |
Hodnocení | 4.83/5 Celkem 6 Hodnocení |
Vývojář | http://creativebuilds.io |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Title Blacklist", "version": "1.0.2", "description": "Block videos from showing up in your home feed on YouTube that contain certain keywords that you set.", "icons": { "16": "assets\/icons\/icon16.png", "24": "assets\/icons\/icon24.png", "48": "assets\/icons\/icon48.png", "128": "assets\/icons\/icon128.png" }, "browser_action": { "default_icon": "assets\/icons\/icon16.png", "default_popup": "popup\/index.html", "default_title": "Youtube Title Blacklist - Settings" }, "content_scripts": [ { "js": [ "content\/index.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "background": { "scripts": [ "background\/index.js" ], "persistent": false }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "web_accessible_resources": [ "assets\/icons\/*.png" ], "permissions": [ "activeTab", "storage" ] } |