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 |
Eメール | [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" ] } |