Screen Time
Captures screen time from active pages
Co to jest Screen Time?
Screen Time to rozszerzenie Chrome opracowane przez mac, a jego główną funkcją jest „Captures screen time from active pages”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Screen Time
Pobierz pliki rozszerzeń Screen Time 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
Screen Time for Google Chrome will capture time spent on sites and prepare reports same way as it done in Screen Time iOS feature. Data stored locally and does not sent anywhere. Only active tabs are counted so even if you open bazillion of pages only one at a time is active. Feel free to propose feature requests in github.
Podstawowe informacje o rozszerzeniu
Nazwa | Screen Time |
ID | plckpjcbdofdpbljigbjkohpfccafged |
Oficjalny URL | https://chromewebstore.google.com/detail/screen-time/plckpjcbdofdpbljigbjkohpfccafged |
Opis | Captures screen time from active pages |
Rozmiar pliku | 129 KB |
Liczba instalacji | 233 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2020-12-12 |
Data Publikacji | 2020-12-08 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | mac |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/mac2000/screentime |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Screen Time", "version": "1.0.0", "description": "Captures screen time from active pages", "short_name": "screentime", "permissions": [ "tabs", "storage", "notifications" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Does a thing when you do a thing", "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } } |