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/                    

擴展基本資訊

名稱 Trello to GitHub Issue Trello to GitHub Issue
ID mcdgcblepfepgcjfjmhhdhoapahpeaob
官方網址 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"
    ]
}