Jira JSON Export

Export JIRA Issues in JSON format.

Что такое Jira JSON Export?

Jira JSON Export - это расширение Chrome, разработанное https://zyndaa.com, и его основная функция - "Export JIRA Issues in JSON format.".

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

screenshot
screenshot

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

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

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

                        Export issues in Jira boards to JSON file

In the Atlassian JIRA tool, it will take a lot of time to copy each issue details in the Jira boards one by one.

Using this extension, export issues in Jira boards to JSON file.

Follow the below steps to export the issues in Jira boards to JSON file.

1) Install addon in chrome
2) Visit your Atlassian JIRA website. Go to Jira board
3) Click on the addon icon on the top right side
4) Click on the export button which will download JSON file                    

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

Название Jira JSON Export Jira JSON Export
ID hpoapncnjpfbjooefimfpkknlcnkjlna
Официальный URL https://chromewebstore.google.com/detail/jira-json-export/hpoapncnjpfbjooefimfpkknlcnkjlna
Описание Export JIRA Issues in JSON format.
Размер файла 196 KB
Количество установок 134
Текущая Версия 0.0.4
Последнее Обновление 2021-03-28
Дата публикации 2020-03-18
Рейтинг 5.00/5 Всего 4 оценок
Разработчик https://zyndaa.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://zyndaa.com/
URL страницы помощи https://zyndaa.com/products/jira-json-export-extension
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jira JSON Export",
    "version": "0.0.4",
    "manifest_version": 2,
    "description": "Export JIRA Issues in JSON format.",
    "permissions": [
        "tabs",
        "https:\/\/*.atlassian.net\/*"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        },
        "default_title": "Export JIRA Project",
        "default_popup": "options.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}