github+travis
Display build status next to the project name on github.
什麼是github+travis?
github+travis是由Tomas Carnecky開發的Chrome擴展程式,該擴展的主要功能是“Display build status next to the project name on github.”。
擴展截圖
下載github+travis擴展crx文件
下載github+travis擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Displays the travis-ci build status icon next to the project name on github. When you click the icon it will take you right to the project page on travis-ci.org. Yes, that's all it does. 擴展基本資訊
| 名稱 | |
| ID | klbmicjanlggbmanmpneloekhajhhbfb |
| 官方網址 | https://chrome.google.com/webstore/detail/github+travis/klbmicjanlggbmanmpneloekhajhhbfb |
| 簡介 | Display build status next to the project name on github. |
| 檔案大小 | 11.49 KB |
| 安裝次數 | 124 |
| 目前版本 | 11 |
| 更新時間 | 2015-05-09 |
| 上架時間 | 2015-05-09 |
| 評分 | 3.47/5 共 15 次評分 |
| 開發者 | Tomas Carnecky |
| 付費類型 | free |
| 擴展官網 | https://caurea.org/2011/09/25/github-meets-travis-ci.html |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"version": "11",
"name": "github+travis",
"description": "Display build status next to the project name on github.",
"icons": {
"48": "icon-48.png",
"128": "icon-128.png"
},
"content_scripts": [
{
"js": [
"script.js"
],
"matches": [
"https:\/\/github.com\/*"
],
"run_at": "document_idle"
}
]
} | |