JIRA Attachment Download

Select JIRA attachments form a ticket and download them.

Что такое JIRA Attachment Download?

JIRA Attachment Download - это расширение Chrome, разработанное Unknown, и его основная функция - "Select JIRA attachments form a ticket and download them.".

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

screenshot
screenshot

Скачать файл CRX расширения JIRA Attachment Download

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

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

                        Download all attachments of any JIRA ticket with one click.

The Popup allows choosing which attachment should be downloaded. The found attachments can be search also using regular expressions and a additional link filter can be defined to find external, linked attachments. The setting for this filter is persisted per domain. The attachments are saved into the default download folder as // or another pattern which can be setup in the attachment options.                    

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

Название JIRA Attachment Download JIRA Attachment Download
ID bgjeaogfikmbnlocjlfidhgoappekmag
Официальный URL https://chromewebstore.google.com/detail/jira-attachment-download/bgjeaogfikmbnlocjlfidhgoappekmag
Описание Select JIRA attachments form a ticket and download them.
Размер файла 27.72 KB
Количество установок 77
Текущая Версия 1.7
Последнее Обновление 2017-11-18
Дата публикации 2017-11-18
Рейтинг 3.00/5 Всего 1 оценок
Разработчик Unknown
Тип оплаты free
Официальный сайт расширения https://github.com/irgangla/JiraAttachmentDownload
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JIRA Attachment Download",
    "description": "Select JIRA attachments form a ticket and download them.",
    "author": "Thomas Irgang",
    "version": "1.7",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon.png",
        "18": "icon18.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "",
        "downloads",
        "storage",
        "tabs",
        "activeTab"
    ]
}