Trello to GitHub Issue

Create GitHub issues from Trello cards

Was ist Trello to GitHub Issue?

Trello to GitHub Issue ist eine Chrome-Erweiterung, die von Geoffrey Parker entwickelt wurde, und ihr Hauptmerkmal ist "Create GitHub issues from Trello cards".

Trello to GitHub Issue-Erweiterungs-CRX-Datei herunterladen

Laden Sie Trello to GitHub Issue-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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/                    

Grundlegende Informationen zur Erweiterung

Name Trello to GitHub Issue Trello to GitHub Issue
ID mcdgcblepfepgcjfjmhhdhoapahpeaob
Offizielle URL https://chrome.google.com/webstore/detail/trello-to-github-issue/mcdgcblepfepgcjfjmhhdhoapahpeaob
Beschreibung Create GitHub issues from Trello cards
Dateigröße 91.01 KB
Installationsanzahl 75
Aktuelle Version 1.0.5
Letztes Update 2014-12-12
Veröffentlichungsdatum 2014-12-12
Bewertung 3.00/5 Insgesamt 3 Bewertungen
Entwickler Geoffrey Parker
Zahlungsart free
Erweiterungswebsite https://github.com/goodybag/trello-to-github/
Hilfeseite URL https://github.com/goodybag/trello-to-github/issues
Unterstützte Sprachen 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"
    ]
}