Jenkins Status Tab
Show the status of a Jenkins build in the tab title.
What is Jenkins Status Tab?
Jenkins Status Tab is a Chrome extension developed by christianvuerings, and its main feature is "Show the status of a Jenkins build in the tab title.".
Extension Screenshots
Download Jenkins Status Tab Extension CRX File
Download Jenkins Status Tab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Show the status of a Jenkins build in the tab. Notes: - This plugin automatically enables auto refresh which may cause some heavy data usage.
Extension Basic Information
Name | |
ID | bpfcpdnjoengdphlnneoilmphaelapnn |
Official URL | https://chrome.google.com/webstore/detail/jenkins-status-tab/bpfcpdnjoengdphlnneoilmphaelapnn |
Description | Show the status of a Jenkins build in the tab title. |
File Size | 30.56 KB |
Installation Count | 17 |
Current Version | 0.0.1 |
Last Updated | 2016-11-23 |
Publish Date | 2016-11-23 |
Rating | 1.00/5 Total 1 Ratings |
Developer | christianvuerings |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/christianvuerings/jenkins-status-tab |
Help Page URL | https://github.com/christianvuerings/jenkins-status-tab/issues |
Supported Languages | 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:\/\/*\/" ] } |