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"
    ]
}