Blurred thumbnails
Blur thumbnails on YT page for whatever reason
什么是Blurred thumbnails?
Blurred thumbnails是由krzysiek.kurczewski开发的Chrome扩展程序,该扩展的主要功能是“Blur thumbnails on YT page for whatever reason”。
扩展截图
下载Blurred thumbnails扩展crx文件
下载Blurred thumbnails扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Blurred thumbnails |
ID | lefhalefpinohjmpfflkfcaoiafmpifb |
官方URL | https://chromewebstore.google.com/detail/blurred-thumbnails/lefhalefpinohjmpfflkfcaoiafmpifb |
简介 | Blur thumbnails on YT page for whatever reason |
文件大小 | 26.32 KB |
安装次数 | 645 |
当前版本 | 1.5.0 |
更新时间 | 2024-02-18 |
上架时间 | 2023-03-25 |
评分 | 4.78/5 共9次评分 |
开发者 | krzysiek.kurczewski |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/kkurczewski/blur-youtube-thumbnails |
支持的语言 | 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" ] } |