Trello to GitHub Issue

Create GitHub issues from Trello cards

Co je Trello to GitHub Issue?

Trello to GitHub Issue je rozšíření Chrome vyvinuté Geoffrey Parker, a jeho hlavní funkcí je „Create GitHub issues from Trello cards“.

Stáhnout soubor CRX rozšíření Trello to GitHub Issue

Stáhněte si soubory rozšíření Trello to GitHub Issue ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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/                    

Základní Informace o Rozšíření

Název Trello to GitHub Issue Trello to GitHub Issue
ID mcdgcblepfepgcjfjmhhdhoapahpeaob
Oficiální URL https://chrome.google.com/webstore/detail/trello-to-github-issue/mcdgcblepfepgcjfjmhhdhoapahpeaob
Popis Create GitHub issues from Trello cards
Velikost souboru 91.01 KB
Počet instalací 75
Aktuální Verze 1.0.5
Poslední Aktualizace 2014-12-12
Datum Vydání 2014-12-12
Hodnocení 3.00/5 Celkem 3 Hodnocení
Vývojář Geoffrey Parker
Typ Platby free
Webové stránky Rozšíření https://github.com/goodybag/trello-to-github/
URL Stránky Nápovědy https://github.com/goodybag/trello-to-github/issues
Podporované Jazyky 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"
    ]
}