Page Timer
How long have I been on this page?
What is Page Timer?
Page Timer is a Chrome extension developed by [email protected], and its main feature is "How long have I been on this page?".
Extension Screenshots
Download Page Timer Extension CRX File
Download Page Timer 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
Ever open an email, do a task, then wonder how long that took? Install this, then just look at the timer next to the URL bar. It records how long it's been since the URL has changed. Click to see the last few pages you were on and how long you spent there. All data is kept locally in ram; no data is sent over the network or saved to disk. New in version 1.7 (Oct 2017): Display seconds. Source code: https://github.com/google/page-timer/
Extension Basic Information
Name | Page Timer |
ID | enljfpkeopdppbphgadibdpodgjhmabm |
Official URL | https://chromewebstore.google.com/detail/page-timer/enljfpkeopdppbphgadibdpodgjhmabm |
Description | How long have I been on this page? |
File Size | 32.27 KB |
Installation Count | 7,000 |
Current Version | 1.7 |
Last Updated | 2017-10-18 |
Publish Date | 2017-10-18 |
Rating | 4.67/5 Total 12 Ratings |
Developer | [email protected] |
Payment Type | free |
Extension Website | https://github.com/google/page-timer/ |
Privacy Policy Page URL | https://github.com/google/page-timer/blob/master/PRIVACY.md |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Page Timer", "description": "How long have I been on this page?", "version": "1.7", "author": "[email protected]", "permissions": [ "tabs" ], "icons": { "16": "clock16.png", "48": "clock48.png", "128": "clock128.png" }, "browser_action": { "default_icon": { "19": "browser-action-19.png", "38": "browser-action-38.png" } }, "background": { "scripts": [ "common.js", "background.js" ], "persistent": true }, "options_page": "options.html" } |