Trello to GitHub Issue

Create GitHub issues from Trello cards

Trello to GitHub Issueคืออะไร?

Trello to GitHub Issue เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Geoffrey Parker และคุณลักษณะหลักของมันคือ "Create GitHub issues from Trello cards"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trello to GitHub Issue

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}