JIRA Attachment Download

Select JIRA attachments form a ticket and download them.

Vad är JIRA Attachment Download?

JIRA Attachment Download är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Select JIRA attachments form a ticket and download them.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner JIRA Attachment Download-förlängningens CRX-fil

Ladda ner JIRA Attachment Download-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn JIRA Attachment Download JIRA Attachment Download
ID bgjeaogfikmbnlocjlfidhgoappekmag
Officiell webbadress https://chromewebstore.google.com/detail/jira-attachment-download/bgjeaogfikmbnlocjlfidhgoappekmag
Beskrivning Select JIRA attachments form a ticket and download them.
Filstorlek 27.72 KB
Antal Installationer 77
Aktuell Version 1.7
Senast Uppdaterad 2017-11-18
Publiceringsdatum 2017-11-18
Betyg 3.00/5 Totalt 1 Betyg
Utvecklare Unknown
Betalningssätt free
Tilläggswebbplats https://github.com/irgangla/JiraAttachmentDownload
Stödda Språk 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"
    ]
}