Jenkins Status Tab
Show the status of a Jenkins build in the tab title.
Was ist Jenkins Status Tab?
Jenkins Status Tab ist eine Chrome-Erweiterung, die von christianvuerings entwickelt wurde, und ihr Hauptmerkmal ist "Show the status of a Jenkins build in the tab title.".
Erweiterungsscreenshots
Jenkins Status Tab-Erweiterungs-CRX-Datei herunterladen
Laden Sie Jenkins Status Tab-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Show the status of a Jenkins build in the tab. Notes: - This plugin automatically enables auto refresh which may cause some heavy data usage.
Grundlegende Informationen zur Erweiterung
Name | |
ID | bpfcpdnjoengdphlnneoilmphaelapnn |
Offizielle URL | https://chrome.google.com/webstore/detail/jenkins-status-tab/bpfcpdnjoengdphlnneoilmphaelapnn |
Beschreibung | Show the status of a Jenkins build in the tab title. |
Dateigröße | 30.56 KB |
Installationsanzahl | 17 |
Aktuelle Version | 0.0.1 |
Letztes Update | 2016-11-23 |
Veröffentlichungsdatum | 2016-11-23 |
Bewertung | 1.00/5 Insgesamt 1 Bewertungen |
Entwickler | christianvuerings |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/christianvuerings/jenkins-status-tab |
Hilfeseite URL | https://github.com/christianvuerings/jenkins-status-tab/issues |
Unterstützte Sprachen | 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:\/\/*\/" ] } |