Watch Timer for Youtube and Netflix
Youtube and Netflix watch time logging tool
Qu'est-ce que Watch Timer for Youtube and Netflix ?
Watch Timer for Youtube and Netflix est une extension Chrome développée par Unknown, et sa fonction principale est "Youtube and Netflix watch time logging tool".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Watch Timer for Youtube and Netflix
Téléchargez les fichiers d'extension Watch Timer for Youtube and Netflix au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Watch Timer for Youtube and Netflix |
ID | bmmidcdclpkbhikdmcedijejmpcfkikn |
URL Officiel | https://chromewebstore.google.com/detail/watch-timer-for-youtube-a/bmmidcdclpkbhikdmcedijejmpcfkikn |
Description | Youtube and Netflix watch time logging tool |
Taille du Fichier | 31.44 KB |
Nombre d'Installations | 20 |
Version Actuelle | 1.0.3 |
Dernière Mise à Jour | 2020-05-15 |
Date de Publication | 2020-05-15 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |