Github Travis Stat

Display travis-ci build status and time chart, with status icon next to the project name on github.

Github Travis Stat란 무엇입니까?

Github Travis Stat은(는) wsywj61에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display travis-ci build status and time chart, with status icon next to the project name on github."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Github Travis Stat 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This is an extension to display travis-ci status for repos in github. There is an interesting chart, which shows that recent 10 times build status and build duration changes.

该插件主要用于在github页面上显示对应仓库的travis-ci build状态,并使用图形化(图表)的形式展示近10次build的状态和时间变化。                    

확장 프로그램 기본 정보

이름 Github Travis Stat Github Travis Stat
ID ekkfhiophiaakmeppcnkblpbbjlnlnmh
공식 URL https://chromewebstore.google.com/detail/github-travis-stat/ekkfhiophiaakmeppcnkblpbbjlnlnmh
설명 Display travis-ci build status and time chart, with status icon next to the project name on github.
파일 크기 120 KB
설치 횟수 46
현재 버전 2.1.6
최근 업데이트 2018-03-08
출시 날짜 2018-03-08
평점 4.29/5 총 7 개의 평점
개발자 wsywj61
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Yaowenjie/travis-github-chrome-extension
도움말 페이지 URL https://github.com/Yaowenjie/travis-github-chrome-extension/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "web_accessible_resources": [
        "travis-icon.png",
        "build-failing.svg",
        "build-success.svg",
        "build-unknown.svg"
    ],
    "version": "2.1.6",
    "name": "Github Travis Stat",
    "short_name": "build-stat",
    "description": "Display travis-ci build status and time chart, with status icon next to the project name on github.",
    "homepage_url": "https:\/\/github.com\/Yaowenjie\/travis-github-chrome-extension",
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "https:\/\/api.travis-ci.org\/"
    ],
    "content_security_policy": "script-src 'self' https:\/\/github.com; object-src 'self'",
    "content_scripts": [
        {
            "js": [
                "bundle.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_idle"
        }
    ]
}