Trello to GitHub Issue

Create GitHub issues from Trello cards

Apa itu Trello to GitHub Issue?

Trello to GitHub Issue adalah ekstensi Chrome yang dikembangkan oleh Geoffrey Parker, dan fitur utamanya adalah "Create GitHub issues from Trello cards".

Unduh Berkas CRX Ekstensi Trello to GitHub Issue

Unduh file ekstensi Trello to GitHub Issue dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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/                    

Informasi Dasar Ekstensi

Nama Trello to GitHub Issue Trello to GitHub Issue
ID mcdgcblepfepgcjfjmhhdhoapahpeaob
URL Resmi https://chrome.google.com/webstore/detail/trello-to-github-issue/mcdgcblepfepgcjfjmhhdhoapahpeaob
Deskripsi Create GitHub issues from Trello cards
Ukuran File 91.01 KB
Jumlah Instalasi 75
Versi Saat Ini 1.0.5
Terakhir Diperbarui 2014-12-12
Tanggal Publikasi 2014-12-12
Penilaian 3.00/5 Total 3 Penilaian
Pengembang Geoffrey Parker
Tipe Pembayaran free
Situs Ekstensi https://github.com/goodybag/trello-to-github/
URL Halaman Bantuan https://github.com/goodybag/trello-to-github/issues
Bahasa yang Didukung 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"
    ]
}