GitHub & Travis CI - Enhanced Status

Enhances the Travis CI status on GitHub pull request pages.

GitHub & Travis CI - Enhanced Status란 무엇입니까?

GitHub & Travis CI - Enhanced Status은(는) Dominique Müller에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhances the Travis CI status on GitHub pull request pages."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

GitHub & Travis CI - Enhanced Status 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        While the integration between GitHub and Travis CI works like a charm, it only provides minimal build information on Pull Request pages. In order to see further build information, developers always have to jump into the Travis CI web application.

This extension enhances the build status by also showing the build jobs in the UI, including the real-time status and runtime. Plus, it provides a link for directly jumping into a build job log in Travis CI.

FEEDBACK & BUGS
Feel free to open an issues on GitHub if you encounter any bug, or have an idea for some enhancement / a new feature: https://github.com/dominique-mueller/web-extension-github-travis-status/issues

LEGAL NOTICE
This extension is my personal project, and is thus not an official product of GitHub and / or Travis CI.                    

확장 프로그램 기본 정보

이름 GitHub & Travis CI - Enhanced Status GitHub & Travis CI - Enhanced Status
ID feamoaieedkmfkeiaplidoingcflbggm
공식 URL https://chromewebstore.google.com/detail/github-travis-ci-enhanced/feamoaieedkmfkeiaplidoingcflbggm
설명 Enhances the Travis CI status on GitHub pull request pages.
파일 크기 20.03 KB
설치 횟수 27
현재 버전 1.1.2
최근 업데이트 2018-05-05
출시 날짜 2018-05-05
개발자 Dominique Müller
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/dominique-mueller
도움말 페이지 URL https://github.com/dominique-mueller/web-extension-github-travis-status/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub & Travis CI - Enhanced Status",
    "description": "Enhances the Travis CI status on GitHub pull request pages.",
    "version": "1.1.2",
    "homepage_url": "https:\/\/github.com\/dominique-mueller\/web-extension-github-travis-status",
    "manifest_version": 2,
    "icons": {
        "16": "assets\/icon-16.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    },
    "permissions": [
        "https:\/\/github.com\/*",
        "tabs",
        "webNavigation"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/content_script.js",
                "src\/vendor.js"
            ],
            "css": [
                "src\/content_script.css"
            ]
        }
    ]
}