Mantis2Trello

Create Trello Cards from Mantis Bug Tracker 0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url

Co je Mantis2Trello?

Mantis2Trello je rozšíření Chrome vyvinuté https://www.jcnistal.es, a jeho hlavní funkcí je „Create Trello Cards from Mantis Bug Tracker 0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Mantis2Trello

Stáhněte si soubory rozšíření Mantis2Trello ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Create Trello Cards from Mantis Bug Tracker
0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url                    

Základní Informace o Rozšíření

Název Mantis2Trello Mantis2Trello
ID ddiiaojmncfmdmghfinjfedilkegilom
Oficiální URL https://chromewebstore.google.com/detail/mantis2trello/ddiiaojmncfmdmghfinjfedilkegilom
Popis Create Trello Cards from Mantis Bug Tracker 0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url
Velikost souboru 50.06 KB
Počet instalací 117
Aktuální Verze 0.3
Poslední Aktualizace 2018-11-23
Datum Vydání 2018-11-23
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář https://www.jcnistal.es
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/nikeyes/Mantis2Trello
URL Stránky Nápovědy https://github.com/nikeyes/Mantis2Trello/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mantis2Trello",
    "short_name": "Mantis2Trello",
    "description": "",
    "version": "0.3",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "Mantis2TrelloIcon16.png",
        "48": "Mantis2TrelloIcon48.png",
        "128": "Mantis2TrelloIcon128.png"
    },
    "page_action": {
        "default_icon": "Mantis2TrelloIcon16.png",
        "default_title": "Click to Create Trello Card with this Mantis."
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/mantis\/view.php*",
                "*:\/\/*\/bugs\/view.php*",
                "*:\/\/*\/view.php*"
            ],
            "js": [
                "jquery.1.7.1.min.js",
                "client.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "*:\/\/*\/mantis\/view.php*",
        "*:\/\/*\/bugs\/view.php*",
        "*:\/\/*\/view.php*",
        "declarativeContent",
        "tabs",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}