Trackr
Track the time you spend on various websites with beautiful graphs on the new tab page!
Was ist Trackr?
Trackr ist eine Chrome-Erweiterung, die von Srikar Gudipati entwickelt wurde, und ihr Hauptmerkmal ist "Track the time you spend on various websites with beautiful graphs on the new tab page!".
Erweiterungsscreenshots
Trackr-Erweiterungs-CRX-Datei herunterladen
Laden Sie Trackr-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This is a Chrome extension that lets you track the time you spend on various websites with beautiful graphs on the new tab page!
Grundlegende Informationen zur Erweiterung
Name | |
ID | pccehhnicffhgffhdfgainipddlopmie |
Offizielle URL | https://chrome.google.com/webstore/detail/trackr/pccehhnicffhgffhdfgainipddlopmie |
Beschreibung | Track the time you spend on various websites with beautiful graphs on the new tab page! |
Dateigröße | 205 KB |
Installationsanzahl | 5,000 |
Aktuelle Version | 1.2 |
Letztes Update | 2015-02-23 |
Veröffentlichungsdatum | 2015-02-23 |
Bewertung | 3.74/5 Insgesamt 43 Bewertungen |
Entwickler | Srikar Gudipati |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |