Trello to GitHub Issue
Create GitHub issues from Trello cards
Trello to GitHub Issue क्या है?
Trello to GitHub Issue Geoffrey Parker द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Create GitHub issues from Trello cards"।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Trello to GitHub Issue एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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/
एक्सटेंशन की मूल जानकारी
नाम | ![]() |
ID | mcdgcblepfepgcjfjmhhdhoapahpeaob |
आधिकारिक URL | https://chrome.google.com/webstore/detail/trello-to-github-issue/mcdgcblepfepgcjfjmhhdhoapahpeaob |
विवरण | Create GitHub issues from Trello cards |
फ़ाइल का आकार | 91.01 KB |
स्थापना संख्या | 75 |
वर्तमान संस्करण | 1.0.5 |
अंतिम अपडेट | 2014-12-12 |
प्रकाशन तिथि | 2014-12-12 |
रेटिंग | 3.00/5 कुल 3 रेटिंग्स |
डेवलपर | Geoffrey Parker |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/goodybag/trello-to-github/ |
सहायता पृष्ठ URL | https://github.com/goodybag/trello-to-github/issues |
समर्थित भाषाएँ | 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" ] } |