Screen Time
Captures screen time from active pages
What is Screen Time?
Screen Time is a Chrome extension developed by mac, and its main feature is "Captures screen time from active pages".
Extension Screenshots
Download Screen Time Extension CRX File
Download Screen Time extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Screen Time |
ID | plckpjcbdofdpbljigbjkohpfccafged |
Official URL | https://chromewebstore.google.com/detail/screen-time/plckpjcbdofdpbljigbjkohpfccafged |
Description | Captures screen time from active pages |
File Size | 129 KB |
Installation Count | 233 |
Current Version | 1.0.0 |
Last Updated | 2020-12-12 |
Publish Date | 2020-12-08 |
Rating | 5.00/5 Total 1 Ratings |
Developer | mac |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/mac2000/screentime |
Supported Languages | 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" } } } |