YouTube Blur
Avoid distractions on YouTube by blurring the thumbnails on the homepage
YouTube Blurとは何ですか?
YouTube Blurはcodedbyleoによって開発されたChromeの拡張機能で、その主な機能は「Avoid distractions on YouTube by blurring the thumbnails on the homepage」です。
拡張機能のスクリーンショット
YouTube Blur拡張機能のCRXファイルをダウンロード
YouTube Blur拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
With YouTube Blur you'll be able to focus on your work, education or creativity without getting distracted by YouTube's recommended videos in the homepage. Simply install the extension on chrome, toggle on the YouTube Blur switch, and prepare for a new level of focus! PRIVACY I do not read, examine or track your browser history or any other personal information. The only permissions required for are "tabs" to insert the functionality and "storage" to store your settings.
拡張機能の基本情報
名前 | YouTube Blur |
ID | kdokcakcfbknongpohpabejbmoocddhh |
公式URL | https://chromewebstore.google.com/detail/youtube-blur/kdokcakcfbknongpohpabejbmoocddhh |
説明 | Avoid distractions on YouTube by blurring the thumbnails on the homepage |
ファイルサイズ | 17.86 KB |
インストール数 | 569 |
現在のバージョン | 1.0.0 |
最終更新日 | 2021-09-27 |
公開日 | 2021-09-24 |
評価 | 4.00/5 合計 2 レビュー |
開発者 | codedbyleo |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Blur", "description": "Avoid distractions on YouTube by blurring the thumbnails on the homepage", "manifest_version": 3, "version": "1.0.0", "icons": { "128": "icon_128.png" }, "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/" ], "js": [ "blur.js" ] } ] } |