Screen Time
Captures screen time from active pages
Wat is Screen Time?
Screen Time is een Chrome-extensie ontwikkeld door mac, en de belangrijkste functie is "Captures screen time from active pages".
Extensie Screenshots
Download het CRX-bestand van de extensie Screen Time
Download Screen Time-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Screen Time |
ID | plckpjcbdofdpbljigbjkohpfccafged |
Officiële URL | https://chromewebstore.google.com/detail/screen-time/plckpjcbdofdpbljigbjkohpfccafged |
Beschrijving | Captures screen time from active pages |
Bestandsgrootte | 129 KB |
Aantal Installaties | 233 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2020-12-12 |
Publicatiedatum | 2020-12-08 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | mac |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/mac2000/screentime |
Ondersteunde Talen | 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" } } } |