Trello to GitHub Issue
Create GitHub issues from Trello cards
What is Trello to GitHub Issue?
Trello to GitHub Issue is a Chrome extension developed by Geoffrey Parker, and its main feature is "Create GitHub issues from Trello cards".
Download Trello to GitHub Issue Extension CRX File
Download Trello to GitHub Issue 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
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/
Extension Basic Information
Name | ![]() |
ID | mcdgcblepfepgcjfjmhhdhoapahpeaob |
Official URL | https://chrome.google.com/webstore/detail/trello-to-github-issue/mcdgcblepfepgcjfjmhhdhoapahpeaob |
Description | Create GitHub issues from Trello cards |
File Size | 91.01 KB |
Installation Count | 75 |
Current Version | 1.0.5 |
Last Updated | 2014-12-12 |
Publish Date | 2014-12-12 |
Rating | 3.00/5 Total 3 Ratings |
Developer | Geoffrey Parker |
Payment Type | free |
Extension Website | https://github.com/goodybag/trello-to-github/ |
Help Page URL | https://github.com/goodybag/trello-to-github/issues |
Supported Languages | 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" ] } |