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 |
| 公式URL | 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 |
| Eメール | [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:\/\/*\/"
]
} | |