Stop YouTube Hover Previews
Disable the video previews that play when you hover over a video thumbnail on YouTube
Was ist Stop YouTube Hover Previews?
Stop YouTube Hover Previews ist eine Chrome-Erweiterung, die von https://davidschiller.net entwickelt wurde, und ihr Hauptmerkmal ist "Disable the video previews that play when you hover over a video thumbnail on YouTube".
Erweiterungsscreenshots
Stop YouTube Hover Previews-Erweiterungs-CRX-Datei herunterladen
Laden Sie Stop YouTube Hover Previews-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | amfcggbbflmkdaocjifopjpjmbhnkloo |
| Offizielle URL | https://chromewebstore.google.com/detail/stop-youtube-hover-previe/amfcggbbflmkdaocjifopjpjmbhnkloo |
| Beschreibung | Disable the video previews that play when you hover over a video thumbnail on YouTube |
| Dateigröße | 54.22 KB |
| Installationsanzahl | 176 |
| Aktuelle Version | 2.2 |
| Letztes Update | 2024-01-30 |
| Veröffentlichungsdatum | 2023-11-08 |
| Bewertung | 4.20/5 Insgesamt 5 Bewertungen |
| Entwickler | https://davidschiller.net |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://davidschiller.net/stop-hover-previews.html |
| Hilfeseite URL | https://github.com/dschil138/better-youtube-hover-play |
| Unterstützte Sprachen | 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"
}
} | |