Trello to GitHub Issue
Create GitHub issues from Trello cards
Qu'est-ce que Trello to GitHub Issue ?
Trello to GitHub Issue est une extension Chrome développée par Geoffrey Parker, et sa fonction principale est "Create GitHub issues from Trello cards".
Télécharger le fichier CRX de l'extension Trello to GitHub Issue
Téléchargez les fichiers d'extension Trello to GitHub Issue au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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/
Informations de Base sur l'Extension
Nom | ![]() |
ID | mcdgcblepfepgcjfjmhhdhoapahpeaob |
URL Officiel | https://chrome.google.com/webstore/detail/trello-to-github-issue/mcdgcblepfepgcjfjmhhdhoapahpeaob |
Description | Create GitHub issues from Trello cards |
Taille du Fichier | 91.01 KB |
Nombre d'Installations | 75 |
Version Actuelle | 1.0.5 |
Dernière Mise à Jour | 2014-12-12 |
Date de Publication | 2014-12-12 |
Évaluation | 3.00/5 Total 3 Évaluations |
Développeur | Geoffrey Parker |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/goodybag/trello-to-github/ |
URL de la Page d'Aide | https://github.com/goodybag/trello-to-github/issues |
Langues Prises en Charge | 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" ] } |