Jenkins Status Tab
Show the status of a Jenkins build in the tab title.
什麼是Jenkins Status Tab?
Jenkins Status Tab是由christianvuerings開發的Chrome擴展程式,該擴展的主要功能是“Show the status of a Jenkins build in the tab title.”。
擴展截圖
下載Jenkins Status Tab擴展crx文件
下載Jenkins Status Tab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Show the status of a Jenkins build in the tab.
Notes:
- This plugin automatically enables auto refresh which may cause some heavy data usage. 擴展基本資訊
| 名稱 | |
| ID | bpfcpdnjoengdphlnneoilmphaelapnn |
| 官方網址 | https://chrome.google.com/webstore/detail/jenkins-status-tab/bpfcpdnjoengdphlnneoilmphaelapnn |
| 簡介 | Show the status of a Jenkins build in the tab title. |
| 檔案大小 | 30.56 KB |
| 安裝次數 | 17 |
| 目前版本 | 0.0.1 |
| 更新時間 | 2016-11-23 |
| 上架時間 | 2016-11-23 |
| 評分 | 1.00/5 共 1 次評分 |
| 開發者 | christianvuerings |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/christianvuerings/jenkins-status-tab |
| 說明頁面URL | https://github.com/christianvuerings/jenkins-status-tab/issues |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Jenkins Status Tab",
"description": "Show the status of a Jenkins build in the tab title.",
"version": "0.0.1",
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"icons.js",
"execute.js"
]
}
],
"icons": {
"32": "32.png",
"64": "64.png",
"128": "128.png"
},
"browser_action": {
"default_title": "Make this page blue"
},
"permissions": [
"tabs",
"activeTab",
"https:\/\/*\/",
"http:\/\/*\/"
]
} | |