Trello to GitHub Issue

Create GitHub issues from Trello cards

Trello to GitHub Issue là gì?

Trello to GitHub Issue là một tiện ích mở rộng Chrome được phát triển bởi Geoffrey Parker, và tính năng chính của nó là "Create GitHub issues from Trello cards".

Tải xuống tệp CRX của tiện ích mở rộng Trello to GitHub Issue

Tải xuống các tệp mở rộng Trello to GitHub Issue dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Trello to GitHub Issue Trello to GitHub Issue
ID mcdgcblepfepgcjfjmhhdhoapahpeaob
URL Chính Thức https://chrome.google.com/webstore/detail/trello-to-github-issue/mcdgcblepfepgcjfjmhhdhoapahpeaob
Mô tả Create GitHub issues from Trello cards
Kích Thước Tệp 91.01 KB
Số Lần Cài Đặt 75
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2014-12-12
Ngày Phát Hành 2014-12-12
Đánh Giá 3.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Geoffrey Parker
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/goodybag/trello-to-github/
URL Trang Trợ Giúp https://github.com/goodybag/trello-to-github/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}