Watch Timer for Youtube and Netflix
Youtube and Netflix watch time logging tool
Co to jest Watch Timer for Youtube and Netflix?
Watch Timer for Youtube and Netflix to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Youtube and Netflix watch time logging tool”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Watch Timer for Youtube and Netflix
Pobierz pliki rozszerzeń Watch Timer for Youtube and Netflix w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Watch Timer for Youtube and Netflix |
ID | bmmidcdclpkbhikdmcedijejmpcfkikn |
Oficjalny URL | https://chromewebstore.google.com/detail/watch-timer-for-youtube-a/bmmidcdclpkbhikdmcedijejmpcfkikn |
Opis | Youtube and Netflix watch time logging tool |
Rozmiar pliku | 31.44 KB |
Liczba instalacji | 20 |
Aktualna Wersja | 1.0.3 |
Ostatnia Aktualizacja | 2020-05-15 |
Data Publikacji | 2020-05-15 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Unknown |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |