Trackr
Track the time you spend on various websites with beautiful graphs on the new tab page!
Τι είναι το Trackr;
Το Trackr είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Srikar Gudipati, και η κύρια λειτουργία του είναι "Track the time you spend on various websites with beautiful graphs on the new tab page!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Trackr
Λήψη αρχείων επέκτασης Trackr σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This is a Chrome extension that lets you track the time you spend on various websites with beautiful graphs on the new tab page!
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | pccehhnicffhgffhdfgainipddlopmie |
Επίσημο URL | https://chrome.google.com/webstore/detail/trackr/pccehhnicffhgffhdfgainipddlopmie |
Περιγραφή | Track the time you spend on various websites with beautiful graphs on the new tab page! |
Μέγεθος Αρχείου | 205 KB |
Αριθμός Εγκαταστάσεων | 5,000 |
Τρέχουσα Έκδοση | 1.2 |
Τελευταία Ενημέρωση | 2015-02-23 |
Ημερομηνία Δημοσίευσης | 2015-02-23 |
Αξιολόγηση | 3.74/5 Συνολικά 43 Αξιολογήσεις |
Προγραμματιστής | Srikar Gudipati |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" ] } |