SmartVid - Netflix, Amazon, YouTube autopause
Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.
¿Qué es SmartVid - Netflix, Amazon, YouTube autopause?
SmartVid - Netflix, Amazon, YouTube autopause es una extensión de Chrome desarrollada por Shubham Bassi, y su función principal es "Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión SmartVid - Netflix, Amazon, YouTube autopause
Descarga archivos de extensión SmartVid - Netflix, Amazon, YouTube autopause 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
This extension checks and automatically pauses the videos playing on Netflix, YouTube and PrimeVideo websites when you switch to another tab. When you switch back to any of the paused tabs, the video will resume from where you left off.
Información Básica de la Extensión
Nombre | |
ID | hhgnmllddghdmpmnbdpkcmahegbdclnl |
URL Oficial | https://chromewebstore.google.com/detail/smartvid-netflix-amazon-y/hhgnmllddghdmpmnbdpkcmahegbdclnl |
Descripción | Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back. |
Tamaño del Archivo | 17.61 KB |
Cantidad de Instalaciones | 24 |
Versión Actual | 2.0.0 |
Última Actualización | 2020-09-29 |
Fecha de Publicación | 2020-09-04 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | Shubham Bassi |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/izedamo/SmartVideo |
URL de la Página de Ayuda | https://github.com/izedamo/SmartVideo/issues |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SmartVid - Netflix, Amazon, YouTube autopause", "version": "2.0.0", "description": "Automatically pauses videos on YouTube, PrimeVideo, and Netflix when you switch to another tab and resumes when you switch back.", "permissions": [ "tabs", "storage" ], "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*.primevideo.com\/*", "https:\/\/*.youtube.com\/*", "https:\/\/*.netflix.com\/*" ], "js": [ "scripts\/content-script.js" ] } ], "icons": { "16": "icons\/SmartVideo16.png", "32": "icons\/SmartVideo32.png", "48": "icons\/SmartVideo48.png", "128": "icons\/SmartVideo128.png" }, "manifest_version": 2 } |