Stop YouTube Hover Previews
Disable the video previews that play when you hover over a video thumbnail on YouTube
什麼是Stop YouTube Hover Previews?
Stop YouTube Hover Previews是由https://davidschiller.net開發的Chrome擴展程式,該擴展的主要功能是“Disable the video previews that play when you hover over a video thumbnail on YouTube”。
擴展截圖
下載Stop YouTube Hover Previews擴展crx文件
下載Stop YouTube Hover Previews擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Disable the video previews that autoplay any time your mouse hovers over a thumbnail on YouTube (sometimes called "inline playback"). This extension has three modes: 1. DISABLE ONLY FOR SCROLLING Closest to default YouTube behavior. Previews play as normal but only if you purposefully move your mouse to the video. If your mouse just lands on a video after scrolling, it will not play. 2. PLAY ON LONG CLICK - (Recommended) Previews don't play on hover, but instead play after a "long click" on the thumbnail. Click and hold down briefly (for about half a second) and the preview will play. 3. COMPLETELY DISABLE Never play video previews.
擴展基本資訊
名稱 | Stop YouTube Hover Previews |
ID | amfcggbbflmkdaocjifopjpjmbhnkloo |
官方網址 | https://chromewebstore.google.com/detail/stop-youtube-hover-previe/amfcggbbflmkdaocjifopjpjmbhnkloo |
簡介 | Disable the video previews that play when you hover over a video thumbnail on YouTube |
檔案大小 | 54.22 KB |
安裝次數 | 176 |
目前版本 | 2.2 |
更新時間 | 2024-01-30 |
上架時間 | 2023-11-08 |
評分 | 4.20/5 共 5 次評分 |
開發者 | https://davidschiller.net |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://davidschiller.net/stop-hover-previews.html |
說明頁面URL | https://github.com/dschil138/better-youtube-hover-play |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Stop YouTube Hover Previews", "version": "2.2", "description": "Disable the video previews that play when you hover over a video thumbnail on YouTube", "permissions": [ "activeTab", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "all_frames": true, "run_at": "document_idle" } ], "action": { "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "64": "images\/icon-64.png", "128": "images\/icon-128.png" } } |