Tracky
Allow time tracking from the browser with syncing ability thanks to chrome sync storage
What is Tracky?
Tracky is a Chrome extension developed by Unknown, and its main feature is "Allow time tracking from the browser with syncing ability thanks to chrome sync storage".
Extension Screenshots
Download Tracky Extension CRX File
Download Tracky 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 little extension to track my time, if you are interested by this extension and want to add features feel free to edit the code ^^ https://github.com/Grafikart/tracky
Extension Basic Information
Name | Tracky |
ID | nopncmbjiejagfhpkcbdikogbjcjhhll |
Official URL | https://chromewebstore.google.com/detail/tracky/nopncmbjiejagfhpkcbdikogbjcjhhll |
Description | Allow time tracking from the browser with syncing ability thanks to chrome sync storage |
File Size | 155 KB |
Installation Count | 45 |
Current Version | 0.1.7 |
Last Updated | 2014-10-16 |
Publish Date | 2014-10-16 |
Rating | 4.67/5 Total 9 Ratings |
Developer | Unknown |
Payment Type | free |
Extension Website | https://github.com/Grafikart/tracky |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tracky", "description": "Allow time tracking from the browser with syncing ability thanks to chrome sync storage", "version": "0.1.7", "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "name": "Click to open the timer", "default_title": "Open Timer", "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "storage" ], "manifest_version": 2 } |