Mantis2Trello
Create Trello Cards from Mantis Bug Tracker 0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url
Was ist Mantis2Trello?
Mantis2Trello ist eine Chrome-Erweiterung, die von https://www.jcnistal.es entwickelt wurde, und ihr Hauptmerkmal ist "Create Trello Cards from Mantis Bug Tracker 0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url".
Erweiterungsscreenshots
Mantis2Trello-Erweiterungs-CRX-Datei herunterladen
Laden Sie Mantis2Trello-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
Create Trello Cards from Mantis Bug Tracker
0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ddiiaojmncfmdmghfinjfedilkegilom |
| Offizielle URL | https://chromewebstore.google.com/detail/mantis2trello/ddiiaojmncfmdmghfinjfedilkegilom |
| Beschreibung | Create Trello Cards from Mantis Bug Tracker 0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url |
| Dateigröße | 50.06 KB |
| Installationsanzahl | 117 |
| Aktuelle Version | 0.3 |
| Letztes Update | 2018-11-23 |
| Veröffentlichungsdatum | 2018-11-23 |
| Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
| Entwickler | https://www.jcnistal.es |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/nikeyes/Mantis2Trello |
| Hilfeseite URL | https://github.com/nikeyes/Mantis2Trello/issues |
| Unterstützte Sprachen | 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'"
} | |