Screen Time
Captures screen time from active pages
Cos'è Screen Time?
Screen Time è un'estensione di Chrome sviluppata da mac, e la sua funzione principale è "Captures screen time from active pages".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Screen Time
Scarica i file di estensione Screen Time 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
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.
Informazioni di Base sull'Estensione
Nome | Screen Time |
ID | plckpjcbdofdpbljigbjkohpfccafged |
URL Ufficiale | https://chromewebstore.google.com/detail/screen-time/plckpjcbdofdpbljigbjkohpfccafged |
Descrizione | Captures screen time from active pages |
Dimensione del File | 129 KB |
Conteggio Installazioni | 233 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2020-12-12 |
Data di Pubblicazione | 2020-12-08 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | mac |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/mac2000/screentime |
Lingue Supportate | 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" } } } |