Netflix Wrapped
Netflix Wrapped - your 2020 watch history summarized
¿Qué es Netflix Wrapped?
Netflix Wrapped es una extensión de Chrome desarrollada por Maanav Garg, y su función principal es "Netflix Wrapped - your 2020 watch history summarized".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Netflix Wrapped
Descarga archivos de extensión Netflix Wrapped 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
Netflix Wrapped - your 2020 watch history summarized and displayed in a concise dashboard. Instructions: 1. Open up Netflix and log into your account 2. Head over to your viewing activity page via netflix.com/viewingactivity 3. Click on the Netflix Wrapped extension on your toolbar and simply click the WRAPPED button Now just give it a minute or so (depending on how much Netflix you watch) and your Netflix Wrapped dashboard will (should) open up. This extension is not created by or affiliated with Netflix in any way.
Información Básica de la Extensión
Nombre | Netflix Wrapped |
ID | febagoadhbiohapfajddknchglmidhfb |
URL Oficial | https://chromewebstore.google.com/detail/netflix-wrapped/febagoadhbiohapfajddknchglmidhfb |
Descripción | Netflix Wrapped - your 2020 watch history summarized |
Tamaño del Archivo | 132 KB |
Cantidad de Instalaciones | 390 |
Versión Actual | 1.5 |
Última Actualización | 2021-01-20 |
Fecha de Publicación | 2021-01-20 |
Calificación | 5.00/5 Total de 14 Calificaciones |
Desarrollador | Maanav Garg |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/Maanav-G/Netflix-Wrapped |
URL de la Página de Política de Privacidad | https://github.com/Maanav-G/Netflix-Wrapped/tree/main/privacy-policy |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Netflix Wrapped", "description": "Netflix Wrapped - your 2020 watch history summarized", "version": "1.5", "icons": { "16": "files\/icon16.png", "48": "files\/icon48.png", "128": "files\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/viewingactivity" ], "js": [ "utils\/utils.js", "utils\/charts.js", "utils\/data.js", "utils\/loader.js" ], "css": [], "run_at": "document_start" } ], "background": { "scripts": [ "inject.js", "dashboard.html", "utils\/utils.js", "utils\/charts.js", "utils\/data.js", "utils\/loader.js" ], "persistent": true }, "browser_action": { "default_title": "Netflix Wrapped", "default_popup": "popup.html" }, "web_accessible_resources": [ "inject.js", "dashboard.html", "utils\/utils.js", "utils\/charts.js", "utils\/data.js", "utils\/loader.js" ], "permissions": [ "activeTab" ] } |