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 |
| 电子邮箱 | [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:\/\/*\/"
]
} | |