Trackr
Track the time you spend on various websites with beautiful graphs on the new tab page!
What is Trackr?
Trackr is a Chrome extension developed by Srikar Gudipati, and its main feature is "Track the time you spend on various websites with beautiful graphs on the new tab page!".
Extension Screenshots
Download Trackr Extension CRX File
Download Trackr 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
This is a Chrome extension that lets you track the time you spend on various websites with beautiful graphs on the new tab page!
Extension Basic Information
Name | |
ID | pccehhnicffhgffhdfgainipddlopmie |
Official URL | https://chrome.google.com/webstore/detail/trackr/pccehhnicffhgffhdfgainipddlopmie |
Description | Track the time you spend on various websites with beautiful graphs on the new tab page! |
File Size | 205 KB |
Installation Count | 5,000 |
Current Version | 1.2 |
Last Updated | 2015-02-23 |
Publish Date | 2015-02-23 |
Rating | 3.74/5 Total 43 Ratings |
Developer | Srikar Gudipati |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Trackr", "version": "1.2", "manifest_version": 2, "description": "Track the time you spend on various websites with beautiful graphs on the new tab page!", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "options_ui": { "page": "options\/options.html", "chrome_style": false }, "background": { "scripts": [ "js\/jquery\/jquery.min.js", "src\/bg\/background.js" ], "persistent": true }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "chrome_url_overrides": { "newtab": "src\/override\/override.html" }, "content_scripts": [ { "js": [ "js\/jquery\/jquery.min.js", "src\/contentscript\/contentscript.js" ], "matches": [ "*:\/\/*\/*" ] } ], "permissions": [ "history", "tabs", "*:\/\/*\/*", "storage", "unlimitedStorage" ] } |