AgileMana JIRA assistant

Integrates with both JIRA cloud and JIRA server, allows to import tickets into AgileMana and sync results back to JIRA.

Vad är AgileMana JIRA assistant?

AgileMana JIRA assistant är en Chrome-tillägg utvecklad av https://agilemana.com, och dess huvudfunktion är "Integrates with both JIRA cloud and JIRA server, allows to import tickets into AgileMana and sync results back to JIRA.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner AgileMana JIRA assistant-förlängningens CRX-fil

Ladda ner AgileMana JIRA assistant-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

                        AgileMana JIRA Assistant, allows users to easily create rooms, add JIRA tickets and sync points back to JIRA.                    

Grundläggande Information om Tillägg

Namn AgileMana JIRA assistant AgileMana JIRA assistant
ID bndnbeoklgjfpokbblifccahppafbfng
Officiell webbadress https://chromewebstore.google.com/detail/agilemana-jira-assistant/bndnbeoklgjfpokbblifccahppafbfng
Beskrivning Integrates with both JIRA cloud and JIRA server, allows to import tickets into AgileMana and sync results back to JIRA.
Filstorlek 109 KB
Antal Installationer 163
Aktuell Version 1.3.2
Senast Uppdaterad 2022-04-19
Publiceringsdatum 2020-05-05
Betyg 4.00/5 Totalt 3 Betyg
Utvecklare https://agilemana.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://agilemana.com
Hjälpsida URL https://agilemana.com/faq
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Integrates with both JIRA cloud and JIRA server, allows to import tickets into AgileMana and sync results back to JIRA.",
    "version": "1.3.2",
    "manifest_version": 3,
    "name": "AgileMana JIRA assistant",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "_default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ],
    "permissions": [
        "storage"
    ]
}