Watch Timer for Youtube and Netflix
Youtube and Netflix watch time logging tool
¿Qué es Watch Timer for Youtube and Netflix?
Watch Timer for Youtube and Netflix es una extensión de Chrome desarrollada por Unknown, y su función principal es "Youtube and Netflix watch time logging tool".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Watch Timer for Youtube and Netflix
Descarga archivos de extensión Watch Timer for Youtube and Netflix 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 would help you keep track of the number of hours and minutes you spend on Youtube and Netflix. I built this because it was something I needed and didn't find. You can use this tool to better manage the time spent on these web applications.
Información Básica de la Extensión
Nombre | Watch Timer for Youtube and Netflix |
ID | bmmidcdclpkbhikdmcedijejmpcfkikn |
URL Oficial | https://chromewebstore.google.com/detail/watch-timer-for-youtube-a/bmmidcdclpkbhikdmcedijejmpcfkikn |
Descripción | Youtube and Netflix watch time logging tool |
Tamaño del Archivo | 31.44 KB |
Cantidad de Instalaciones | 20 |
Versión Actual | 1.0.3 |
Última Actualización | 2020-05-15 |
Fecha de Publicación | 2020-05-15 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Unknown |
Tipo de Pago | free |
Idiomas Soportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Watch Timer for Youtube and Netflix", "version": "1.0.3", "description": "Youtube and Netflix watch time logging tool", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.netflix.com\/*" ], "js": [ "content.js", "index.js" ], "run_at": "document_start" } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage" ], "browser_action": { "default_icon": "icon16.png", "default_popup": "index.html" } } |