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 |
| Eメール | [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"
}
} | |