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 |
电子邮箱 | [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" ] } |