Minterapp Time Tracker

This extension helps to track time to increase your productivity

Что такое Minterapp Time Tracker?

Minterapp Time Tracker - это расширение Chrome, разработанное Minterapp, и его основная функция - "This extension helps to track time to increase your productivity".

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

screenshot
screenshot

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

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

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

                        Minterapp is an online time tracking tool you have easily track how much time you spend on projects. You can easily use this chrome extension to track time while using your favorite project management tools like Basecamp 3, Trello and more!                    

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

Название Minterapp Time Tracker Minterapp Time Tracker
ID jgkeaioebkbphfflhckgegdpbogcboen
Официальный URL https://chrome.google.com/webstore/detail/minterapp-time-tracker/jgkeaioebkbphfflhckgegdpbogcboen
Описание This extension helps to track time to increase your productivity
Размер файла 98.08 KB
Количество установок 75
Текущая Версия 0.0.1.9
Последнее Обновление 2018-06-11
Дата публикации 2018-06-11
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Minterapp
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://www.minterapp.com
URL страницы политики конфиденциальности http://www.minterapp.com/privacy-policy
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Minterapp Time Tracker",
    "description": "This extension helps to track time to increase your productivity",
    "version": "0.0.1.9",
    "icons": {
        "128": "images\/mi_light_green_logo.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webNavigation"
    ],
    "short_name": "Minterapp",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/3.basecamp.com\/*",
                "https:\/\/basecamp.com\/*",
                "https:\/\/app.asana.com\/*",
                "*:\/\/trello.com\/*"
            ],
            "css": [
                "bootstrap.css"
            ],
            "all_frames": true,
            "js": [
                "jquery-2.2.4.js",
                "jquery.turbolinks.js",
                "popup.js",
                "content.js",
                "bootstrap.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.minterapp.com\/*",
            "*:\/\/3.basecamp.com\/*",
            "*:\/\/trello.com\/*"
        ]
    },
    "web_accessible_resources": [
        "images\/*"
    ]
}