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" ] } |