Stop YouTube Hover Previews
Disable the video previews that play when you hover over a video thumbnail on YouTube
¿Qué es Stop YouTube Hover Previews?
Stop YouTube Hover Previews es una extensión de Chrome desarrollada por https://davidschiller.net, y su función principal es "Disable the video previews that play when you hover over a video thumbnail on YouTube".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Stop YouTube Hover Previews
Descarga archivos de extensión Stop YouTube Hover Previews en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Stop YouTube Hover Previews |
ID | amfcggbbflmkdaocjifopjpjmbhnkloo |
URL Oficial | https://chromewebstore.google.com/detail/stop-youtube-hover-previe/amfcggbbflmkdaocjifopjpjmbhnkloo |
Descripción | Disable the video previews that play when you hover over a video thumbnail on YouTube |
Tamaño del Archivo | 54.22 KB |
Cantidad de Instalaciones | 176 |
Versión Actual | 2.2 |
Última Actualización | 2024-01-30 |
Fecha de Publicación | 2023-11-08 |
Calificación | 4.20/5 Total de 5 Calificaciones |
Desarrollador | https://davidschiller.net |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://davidschiller.net/stop-hover-previews.html |
URL de la Página de Ayuda | https://github.com/dschil138/better-youtube-hover-play |
Idiomas Soportados | 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" } } |