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.」です。
拡張機能のスクリーンショット
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的状态和时间变化。                     拡張機能の基本情報
| 名前 |   |  
| 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 | 
| Eメール | [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"
        }
    ]
}  |  |