Blurred thumbnails
Blur thumbnails on YT page for whatever reason
What is Blurred thumbnails?
Blurred thumbnails is a Chrome extension developed by krzysiek.kurczewski, and its main feature is "Blur thumbnails on YT page for whatever reason".
Extension Screenshots
Download Blurred thumbnails Extension CRX File
Download Blurred thumbnails extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension allows to selectively blur thumbnails on Youtube videos. # Possible configuration: - Whitelist & blacklist - Channel name - Keywords in video title # How to configure: - Click extension icon to open options - Click on tags to edit existing keywords - Press enter to add new keywords - For channels use plain names (including spaces) - Use: ".*" as a keyword to match all patterns - Use "Test phrase" input on bottom to check which tags will apply for given plain text
Extension Basic Information
Name | Blurred thumbnails |
ID | lefhalefpinohjmpfflkfcaoiafmpifb |
Official URL | https://chromewebstore.google.com/detail/blurred-thumbnails/lefhalefpinohjmpfflkfcaoiafmpifb |
Description | Blur thumbnails on YT page for whatever reason |
File Size | 26.32 KB |
Installation Count | 645 |
Current Version | 1.5.0 |
Last Updated | 2024-02-18 |
Publish Date | 2023-03-25 |
Rating | 4.78/5 Total 9 Ratings |
Developer | krzysiek.kurczewski |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/kkurczewski/blur-youtube-thumbnails |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Blurred thumbnails", "version": "1.5.0", "description": "Blur thumbnails on YT page for whatever reason", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "host_permissions": [ "https:\/\/www.youtube.com\/*", "https:\/\/m.youtube.com\/*" ], "options_page": "options\/index.html", "background": { "service_worker": "hook\/onInstall.js" }, "action": [], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "content\/blur.js", "content\/observer\/mutationObserver.js", "content\/selectors\/home.js", "content\/selectors\/watch.js", "content\/selectors\/results.js", "content\/selectors\/playlists.js", "content\/video.js", "content\/recycler.js", "content\/index.js" ], "css": [ "content\/style.css" ] }, { "matches": [ "https:\/\/m.youtube.com\/*" ], "js": [ "content\/blur.js", "content\/observer\/mutationObserver.js", "content\/selectors\/home.m.js", "content\/selectors\/watch.m.js", "content\/video.js", "content\/index.m.js" ], "css": [ "content\/style.m.css" ] } ], "permissions": [ "storage" ] } |