JIRA Attachment Download

Select JIRA attachments form a ticket and download them.

Was ist JIRA Attachment Download?

JIRA Attachment Download ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Select JIRA attachments form a ticket and download them.".

Erweiterungsscreenshots

screenshot
screenshot

JIRA Attachment Download-Erweiterungs-CRX-Datei herunterladen

Laden Sie JIRA Attachment Download-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name JIRA Attachment Download JIRA Attachment Download
ID bgjeaogfikmbnlocjlfidhgoappekmag
Offizielle URL https://chromewebstore.google.com/detail/jira-attachment-download/bgjeaogfikmbnlocjlfidhgoappekmag
Beschreibung Select JIRA attachments form a ticket and download them.
Dateigröße 27.72 KB
Installationsanzahl 77
Aktuelle Version 1.7
Letztes Update 2017-11-18
Veröffentlichungsdatum 2017-11-18
Bewertung 3.00/5 Insgesamt 1 Bewertungen
Entwickler Unknown
Zahlungsart free
Erweiterungswebsite https://github.com/irgangla/JiraAttachmentDownload
Unterstützte Sprachen 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"
    ]
}