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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة المساعدة 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"
    ]
}