Sum for Trello

Sum card costs in your Trello board

Что такое Sum for Trello?

Sum for Trello - это расширение Chrome, разработанное cmb.durand, и его основная функция - "Sum card costs in your Trello board".

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

screenshot

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

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

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

                        Trello Sum is a Chrome Extension that adds a little bit of functionality to Trello.com freely adapted/forked from Trello Scrum. Trello Sum allows you to count the visible card sum up total cost of cards per list.
Cost is indicated between () in each card description. Now also works with negative costs since version 0.0.8.                    

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

Название Sum for Trello Sum for Trello
ID pkoogihbgjbpeollfnioabeaimjaongg
Официальный URL https://chromewebstore.google.com/detail/sum-for-trello/pkoogihbgjbpeollfnioabeaimjaongg
Описание Sum card costs in your Trello board
Размер файла 56.26 KB
Количество установок 1,193
Текущая Версия 0.0.8
Последнее Обновление 2018-04-30
Дата публикации 2018-04-30
Рейтинг 4.33/5 Всего 9 оценок
Разработчик cmb.durand
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sum for Trello",
    "version": "0.0.8",
    "description": "Sum card costs in your Trello board",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "trellosum.js"
            ],
            "css": [
                "trellosum.css"
            ]
        }
    ],
    "manifest_version": 2,
    "icons": {
        "128": "trello-sum-icon.png"
    },
    "web_accessible_resources": [
        "images\/trello-sum-icon_12x12.png",
        "images\/trello-sum-icon_18x18.png"
    ],
    "permissions": [
        "storage"
    ]
}