Netflex
Work out while you watch your favorite shows.
¿Qué es Netflex?
Netflex es una extensión de Chrome desarrollada por Netflex, y su función principal es "Work out while you watch your favorite shows.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Netflex
Descarga archivos de extensión Netflex 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
Feeling guilty about watching too much TV and getting too little exercise? Netflex gives you the best of both worlds. With this free extension, you can watch any Netflix show while we coach you through simple bodyweight exercises in the corner of your screen. We know, it’s genius. You’re welcome.
Información Básica de la Extensión
Nombre | |
ID | hfanmigfcphpeagamjjombcbpgafhpkf |
URL Oficial | https://chromewebstore.google.com/detail/netflex/hfanmigfcphpeagamjjombcbpgafhpkf |
Descripción | Work out while you watch your favorite shows. |
Tamaño del Archivo | 871 KB |
Cantidad de Instalaciones | 379 |
Versión Actual | 1.0.0 |
Última Actualización | 2021-01-12 |
Fecha de Publicación | 2020-09-23 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Netflex |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://netflexandsweat.com/ |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflex", "version": "1.0.0", "manifest_version": 2, "description": "Work out while you watch your favorite shows.", "permissions": [ "*:\/\/*.netflix.com\/*", "storage" ], "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/netflex_icon16.png", "32": "icons\/netflex_icon32.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*.netflix.com\/*" ], "css": [ "css\/index.css" ], "js": [ "js\/index.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "web_accessible_resources": [ "js\/netflix.js" ], "icons": { "16": "icons\/netflex_icon16.png", "32": "icons\/netflex_icon32.png", "48": "icons\/netflex_icon48.png", "128": "icons\/netflex_icon128.png" } } |