Tracky

Allow time tracking from the browser with syncing ability thanks to chrome sync storage

Что такое Tracky?

Tracky - это расширение Chrome, разработанное Unknown, и его основная функция - "Allow time tracking from the browser with syncing ability thanks to chrome sync storage".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Tracky

Скачайте файлы расширений Tracky в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Tracky Tracky
ID nopncmbjiejagfhpkcbdikogbjcjhhll
Официальный URL https://chromewebstore.google.com/detail/tracky/nopncmbjiejagfhpkcbdikogbjcjhhll
Описание Allow time tracking from the browser with syncing ability thanks to chrome sync storage
Размер файла 155 KB
Количество установок 45
Текущая Версия 0.1.7
Последнее Обновление 2014-10-16
Дата публикации 2014-10-16
Рейтинг 4.67/5 Всего 9 оценок
Разработчик Unknown
Тип оплаты free
Официальный сайт расширения https://github.com/Grafikart/tracky
Поддерживаемые языки 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
}