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. 扩展基本信息
| 名称 | |
| ID | amfcggbbflmkdaocjifopjpjmbhnkloo |
| 官方URL | 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"
}
} | |