Hide YouTube Thumbnails
Hide YouTube Thumbnails for less clickbaity browsing
Hide YouTube Thumbnails là gì?
Hide YouTube Thumbnails là một tiện ích mở rộng Chrome được phát triển bởi Adam Jones, và tính năng chính của nó là "Hide YouTube Thumbnails for less clickbaity browsing".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Hide YouTube Thumbnails
Tải xuống các tệp mở rộng Hide YouTube Thumbnails dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Hide YouTube Thumbnails |
ID | phmcfcbljjdlomoipaffekhgfnpndbef |
URL Chính Thức | https://chromewebstore.google.com/detail/hide-youtube-thumbnails/phmcfcbljjdlomoipaffekhgfnpndbef |
Mô tả | Hide YouTube Thumbnails for less clickbaity browsing |
Kích Thước Tệp | 26.04 KB |
Số Lần Cài Đặt | 56,897 |
Phiên Bản Hiện Tại | 2.5.0 |
Cập Nhật Lần Cuối | 2023-10-31 |
Ngày Phát Hành | 2019-04-12 |
Đánh Giá | 4.83/5 Tổng số 83 Đánh Giá |
Nhà Phát Triển | Adam Jones |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/domdomegg/hideytthumbnails-extension |
URL Trang Trợ Giúp | https://github.com/domdomegg/hideytthumbnails-extension/issues |
URL Trang Chính Sách Bảo Mật | https://adamjones.me/privacy-policies |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |