Watch Timer for Youtube and Netflix
Youtube and Netflix watch time logging tool
Cos'è Watch Timer for Youtube and Netflix?
Watch Timer for Youtube and Netflix è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Youtube and Netflix watch time logging tool".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Watch Timer for Youtube and Netflix
Scarica i file di estensione Watch Timer for Youtube and Netflix in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Watch Timer for Youtube and Netflix |
ID | bmmidcdclpkbhikdmcedijejmpcfkikn |
URL Ufficiale | https://chromewebstore.google.com/detail/watch-timer-for-youtube-a/bmmidcdclpkbhikdmcedijejmpcfkikn |
Descrizione | Youtube and Netflix watch time logging tool |
Dimensione del File | 31.44 KB |
Conteggio Installazioni | 20 |
Versione Corrente | 1.0.3 |
Ultimo Aggiornamento | 2020-05-15 |
Data di Pubblicazione | 2020-05-15 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |