Trello to GitHub Issue
Create GitHub issues from Trello cards
Cos'è Trello to GitHub Issue?
Trello to GitHub Issue è un'estensione di Chrome sviluppata da Geoffrey Parker, e la sua funzione principale è "Create GitHub issues from Trello cards".
Scarica il file CRX dell'estensione Trello to GitHub Issue
Scarica i file di estensione Trello to GitHub Issue 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
This extension is for those people who use Trello for project management and GitHub for issue tracking. It inserts a "GitHub Issue" button into the actions list on Trello cards which automatically creates a GitHub issue from the card and cross-links the two together.
This is an open source project. https://github.com/goodybag/trello-to-github/ Informazioni di Base sull'Estensione
| Nome | |
| ID | mcdgcblepfepgcjfjmhhdhoapahpeaob |
| URL Ufficiale | https://chrome.google.com/webstore/detail/trello-to-github-issue/mcdgcblepfepgcjfjmhhdhoapahpeaob |
| Descrizione | Create GitHub issues from Trello cards |
| Dimensione del File | 91.01 KB |
| Conteggio Installazioni | 75 |
| Versione Corrente | 1.0.5 |
| Ultimo Aggiornamento | 2014-12-12 |
| Data di Pubblicazione | 2014-12-12 |
| Valutazione | 3.00/5 Totale 3 Valutazioni |
| Sviluppatore | Geoffrey Parker |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/goodybag/trello-to-github/ |
| URL della Pagina di Aiuto | https://github.com/goodybag/trello-to-github/issues |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Trello to GitHub Issue",
"version": "1.0.5",
"description": "Create GitHub issues from Trello cards",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"https:\/\/trello.com\/card\/*",
"https:\/\/trello.com\/board\/*",
"https:\/\/trello.com\/c\/*",
"https:\/\/trello.com\/b\/*"
],
"js": [
"lib\/jquery-1.9.1.js",
"lib\/bootstrap-typeahead.js",
"lib\/trello.js",
"main.js"
],
"css": [
"css\/bootstrap.css"
]
}
],
"permissions": [
"https:\/\/api.github.com\/",
"https:\/\/api.trello.com\/",
"https:\/\/github-oauth-proxy.jit.su\/"
],
"web_accessible_resources": [
"popover.html"
]
} | |