Mantis2Trello

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

What is Mantis2Trello?

Mantis2Trello is a Chrome extension developed by https://www.jcnistal.es, and its main feature is "Create Trello Cards from Mantis Bug Tracker 0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url".

Extension Screenshots

screenshot
screenshot

Download Mantis2Trello Extension CRX File

Download Mantis2Trello extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Mantis2Trello Mantis2Trello
ID ddiiaojmncfmdmghfinjfedilkegilom
Official URL https://chromewebstore.google.com/detail/mantis2trello/ddiiaojmncfmdmghfinjfedilkegilom
Description Create Trello Cards from Mantis Bug Tracker 0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url
File Size 50.06 KB
Installation Count 117
Current Version 0.3
Last Updated 2018-11-23
Publish Date 2018-11-23
Rating 5.00/5 Total 2 Ratings
Developer https://www.jcnistal.es
Email [email protected]
Payment Type free
Extension Website https://github.com/nikeyes/Mantis2Trello
Help Page URL https://github.com/nikeyes/Mantis2Trello/issues
Supported Languages 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'"
}