Github Travis CI Builds

Chrome extension to add Travis CI builds tab to Github UI

Github Travis CI Builds là gì?

Github Travis CI Builds là một tiện ích mở rộng Chrome được phát triển bởi Dan Sosedoff, và tính năng chính của nó là "Chrome extension to add Travis CI builds tab to Github UI".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Github Travis CI Builds

Tải xuống các tệp mở rộng Github Travis CI Builds dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Github Travis CI Builds Github Travis CI Builds
ID dphnhapafaimelkockemokgfdocadbdo
URL Chính Thức https://chrome.google.com/webstore/detail/github-travis-ci-builds/dphnhapafaimelkockemokgfdocadbdo
Mô tả Chrome extension to add Travis CI builds tab to Github UI
Kích Thước Tệp 84.06 KB
Số Lần Cài Đặt 16
Phiên Bản Hiện Tại 1.1.4
Cập Nhật Lần Cuối 2019-02-13
Ngày Phát Hành 2019-02-13
Nhà Phát Triển Dan Sosedoff
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sosedoff/travis-github
Ngôn Ngữ Được Hỗ Trợ 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
    }
}