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文件

下载Github Travis Stat扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
        }
    ]
}