Protein Tracker

Tracks a user's protein totals throughout the day.

Что такое Protein Tracker?

Protein Tracker - это расширение Chrome, разработанное marius.tao, и его основная функция - "Tracks a user's protein totals throughout the day.".

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

screenshot

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

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

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

                        An options page where you can set your protein goal and personal information.
A popup window where you can add your protein intake as you eat. It has a progress indicator that shows you how close you are to your goal as a percentage and a bar graph. The popup was designed for easy protein tracking.
A context menu option to add proteins by simply selecting the protein quantity, highlighting it and clicking Add Protein.                    

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

Название Protein Tracker Protein Tracker
ID mokghkeodcncdkpacijgefhfilognnkl
Официальный URL https://chromewebstore.google.com/detail/protein-tracker/mokghkeodcncdkpacijgefhfilognnkl
Описание Tracks a user's protein totals throughout the day.
Размер файла 2.99 MB
Количество установок 32
Текущая Версия 0.55
Последнее Обновление 2018-04-20
Дата публикации 2018-04-20
Рейтинг 5.00/5 Всего 2 оценок
Разработчик marius.tao
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://walkinprogress.github.io/WebPage_for_ProteinTracker/
URL страницы политики конфиденциальности https://github.com/WalkInProgress/ProteinTracker-ChromeExtension/blob/master/LICENSE.md
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Protein Tracker",
    "description": "Tracks a user's protein totals throughout the day.",
    "version": "0.55",
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    },
    "file_system_provider_capabilities": {
        "configurable": true,
        "multiple_mounts": true,
        "source": "network"
    },
    "short_name": "PTrcker",
    "options_page": "options.html",
    "background": {
        "scripts": [
            "js\/eventPage.js",
            "js\/progressbar.js"
        ],
        "persistent": false,
        "offline_enabled": true
    },
    "permissions": [
        "storage",
        "notifications",
        "contextMenus"
    ]
}