Trello to GitHub Issue
Create GitHub issues from Trello cards
Trello to GitHub Issueとは何ですか?
Trello to GitHub IssueはGeoffrey Parkerによって開発されたChromeの拡張機能で、その主な機能は「Create GitHub issues from Trello cards」です。
Trello to GitHub Issue拡張機能のCRXファイルをダウンロード
Trello to GitHub Issue拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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" ] } |