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
官方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"
    ]
}