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 |
官方網址 | 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" } ] } |