Trello Quick Export Button

Adds an 'Export JSON' button to the header menu of Trello boards.

Что такое Trello Quick Export Button?

Trello Quick Export Button - это расширение Chrome, разработанное wersimmon, и его основная функция - "Adds an 'Export JSON' button to the header menu of Trello boards.".

Скачать файл CRX расширения Trello Quick Export Button

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

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

                        Adds an 'Export JSON' button to the header menu of Trello boards, which will trigger a download of the board's JSON export. It may take a few seconds for the Trello server for begin the download.                    

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

Название Trello Quick Export Button Trello Quick Export Button
ID mlabdohgfpjffdcacadjnabecoapkdnb
Официальный URL https://chrome.google.com/webstore/detail/trello-quick-export-butto/mlabdohgfpjffdcacadjnabecoapkdnb
Описание Adds an 'Export JSON' button to the header menu of Trello boards.
Размер файла 4.61 KB
Количество установок 26
Текущая Версия 1.0.0
Последнее Обновление 2018-05-04
Дата публикации 2018-05-04
Разработчик wersimmon
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello Quick Export Button",
    "version": "1.0.0",
    "description": "Adds an 'Export JSON' button to the header menu of Trello boards.",
    "icons": {
        "128": "trello-exportButton.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/trello.com\/b\/*"
            ],
            "js": [
                "trello-exportButton.js"
            ]
        }
    ]
}