Watch Timer for Youtube and Netflix
Youtube and Netflix watch time logging tool
Was ist Watch Timer for Youtube and Netflix?
Watch Timer for Youtube and Netflix ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Youtube and Netflix watch time logging tool".
Erweiterungsscreenshots
Watch Timer for Youtube and Netflix-Erweiterungs-CRX-Datei herunterladen
Laden Sie Watch Timer for Youtube and Netflix-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Watch Timer for Youtube and Netflix |
ID | bmmidcdclpkbhikdmcedijejmpcfkikn |
Offizielle URL | https://chromewebstore.google.com/detail/watch-timer-for-youtube-a/bmmidcdclpkbhikdmcedijejmpcfkikn |
Beschreibung | Youtube and Netflix watch time logging tool |
Dateigröße | 31.44 KB |
Installationsanzahl | 20 |
Aktuelle Version | 1.0.3 |
Letztes Update | 2020-05-15 |
Veröffentlichungsdatum | 2020-05-15 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Unknown |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |