Trackr
Track the time you spend on various websites with beautiful graphs on the new tab page!
Co to jest Trackr?
Trackr to rozszerzenie Chrome opracowane przez Srikar Gudipati, a jego główną funkcją jest „Track the time you spend on various websites with beautiful graphs on the new tab page!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Trackr
Pobierz pliki rozszerzeń Trackr w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This is a Chrome extension that lets you track the time you spend on various websites with beautiful graphs on the new tab page!
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | pccehhnicffhgffhdfgainipddlopmie |
Oficjalny URL | https://chrome.google.com/webstore/detail/trackr/pccehhnicffhgffhdfgainipddlopmie |
Opis | Track the time you spend on various websites with beautiful graphs on the new tab page! |
Rozmiar pliku | 205 KB |
Liczba instalacji | 5,000 |
Aktualna Wersja | 1.2 |
Ostatnia Aktualizacja | 2015-02-23 |
Data Publikacji | 2015-02-23 |
Ocena | 3.74/5 Łącznie 43 Oceny |
Deweloper | Srikar Gudipati |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |