Github Travis CI Builds

Chrome extension to add Travis CI builds tab to Github UI

ما هو Github Travis CI Builds؟

Github Travis CI Builds هو إضافة Chrome تم تطويرها بواسطة Dan Sosedoff، والميزة الرئيسية لها هي "Chrome extension to add Travis CI builds tab to Github UI".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Github Travis CI Builds

قم بتنزيل ملفات الامتداد Github Travis CI Builds بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This chrome extension adds a new tab to Github that displays project builds from Travis CI.
Supports viewing builds from public and private repositories.                    

معلومات أساسية عن التمديد

الاسم Github Travis CI Builds Github Travis CI Builds
ID dphnhapafaimelkockemokgfdocadbdo
عنوان URL الرسمي https://chrome.google.com/webstore/detail/github-travis-ci-builds/dphnhapafaimelkockemokgfdocadbdo
الوصف Chrome extension to add Travis CI builds tab to Github UI
حجم الملف 84.06 KB
عدد التثبيتات 16
النسخة الحالية 1.1.4
آخر تحديث 2019-02-13
تاريخ النشر 2019-02-13
المطور Dan Sosedoff
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/sosedoff/travis-github
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Travis CI Builds",
    "author": "Dan Sosedoff",
    "description": "Chrome extension to add Travis CI builds tab to Github UI",
    "version": "1.1.4",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "mustache.min.js",
                "moment.min.js",
                "templates.js",
                "main.js"
            ],
            "css": [
                "main.css"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "19": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "96": "logo.png",
        "128": "logo.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}