Trello to GitHub Issue

Create GitHub issues from Trello cards

Wat is Trello to GitHub Issue?

Trello to GitHub Issue is een Chrome-extensie ontwikkeld door Geoffrey Parker, en de belangrijkste functie is "Create GitHub issues from Trello cards".

Download het CRX-bestand van de extensie Trello to GitHub Issue

Download Trello to GitHub Issue-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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/                    

Basisinformatie over de Extensie

Naam Trello to GitHub Issue Trello to GitHub Issue
ID mcdgcblepfepgcjfjmhhdhoapahpeaob
Officiële URL https://chrome.google.com/webstore/detail/trello-to-github-issue/mcdgcblepfepgcjfjmhhdhoapahpeaob
Beschrijving Create GitHub issues from Trello cards
Bestandsgrootte 91.01 KB
Aantal Installaties 75
Huidige Versie 1.0.5
Laatst Bijgewerkt 2014-12-12
Publicatiedatum 2014-12-12
Beoordeling 3.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Geoffrey Parker
Betalingswijze free
Extensiewebsite https://github.com/goodybag/trello-to-github/
Help Pagina-URL https://github.com/goodybag/trello-to-github/issues
Ondersteunde Talen 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"
    ]
}