Hide YouTube Thumbnails
Hide YouTube Thumbnails for less clickbaity browsing
Hide YouTube Thumbnailsとは何ですか?
Hide YouTube ThumbnailsはAdam Jonesによって開発されたChromeの拡張機能で、その主な機能は「Hide YouTube Thumbnails for less clickbaity browsing」です。
拡張機能のスクリーンショット
Hide YouTube Thumbnails拡張機能のCRXファイルをダウンロード
Hide YouTube Thumbnails拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Simply hides thumbnails on YouTube to have a more peaceful and less distracting browsing experience. Also useful for avoiding spoilers or inappropriate imagery. Options available: - Temporarily turn off hiding - Blur rather than hide thumbnails - Show thumbnails on hover - Show only solid color - Show thumbnails on search results / playlist / watch / subscriptions / channel pages This extsion could also be descibed as blocking YouTube thumbnails on videos, disabling YouTube thumbnails on videos, blurring YouTube thumbnails on videos. People have found it useful for: - Hiding distracting or inappropriate YouTube thumbnails in class when teaching students - Hiding YouTube thumbnails to reduce distraction and procrastination when studying or working - Hiding YouTube thumbnails to avoid spoilers in the video
拡張機能の基本情報
名前 | Hide YouTube Thumbnails |
ID | phmcfcbljjdlomoipaffekhgfnpndbef |
公式URL | https://chromewebstore.google.com/detail/hide-youtube-thumbnails/phmcfcbljjdlomoipaffekhgfnpndbef |
説明 | Hide YouTube Thumbnails for less clickbaity browsing |
ファイルサイズ | 26.04 KB |
インストール数 | 56,897 |
現在のバージョン | 2.5.0 |
最終更新日 | 2023-10-31 |
公開日 | 2019-04-12 |
評価 | 4.83/5 合計 83 レビュー |
開発者 | Adam Jones |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/domdomegg/hideytthumbnails-extension |
ヘルプページのURL | https://github.com/domdomegg/hideytthumbnails-extension/issues |
プライバシーポリシーページのURL | https://adamjones.me/privacy-policies |
対応言語 | de,en,fr,nl,es,it |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "2.5.0", "name": "__MSG_extName__", "description": "__MSG_extDescription__", "homepage_url": "https:\/\/github.com\/domdomegg\/hideytthumbnails-extension", "browser_specific_settings": { "gecko": { "id": "{17c4514d-71fa-4633-8c07-1fe0b354c885}" }, "gecko_android": [] }, "icons": { "48": "img\/icon48.png", "128": "img\/icon128.png", "512": "img\/icon512.png" }, "default_locale": "en", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "common.js", "inject.js" ], "run_at": "document_start" } ], "options_ui": { "page": "options.html", "browser_style": true }, "permissions": [ "storage" ] } |