Mantis2Trello
Create Trello Cards from Mantis Bug Tracker 0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url
Cos'è Mantis2Trello?
Mantis2Trello è un'estensione di Chrome sviluppata da https://www.jcnistal.es, e la sua funzione principale è "Create Trello Cards from Mantis Bug Tracker 0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Mantis2Trello
Scarica i file di estensione Mantis2Trello in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Create Trello Cards from Mantis Bug Tracker
0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url Informazioni di Base sull'Estensione
| Nome | |
| ID | ddiiaojmncfmdmghfinjfedilkegilom |
| URL Ufficiale | https://chromewebstore.google.com/detail/mantis2trello/ddiiaojmncfmdmghfinjfedilkegilom |
| Descrizione | Create Trello Cards from Mantis Bug Tracker 0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url |
| Dimensione del File | 50.06 KB |
| Conteggio Installazioni | 117 |
| Versione Corrente | 0.3 |
| Ultimo Aggiornamento | 2018-11-23 |
| Data di Pubblicazione | 2018-11-23 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | https://www.jcnistal.es |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/nikeyes/Mantis2Trello |
| URL della Pagina di Aiuto | https://github.com/nikeyes/Mantis2Trello/issues |
| Lingue Supportate | 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'"
} | |