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 擴展基本資訊
| 名稱 | |
| ID | phmcfcbljjdlomoipaffekhgfnpndbef |
| 官方網址 | 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"
]
} | |