Jenkins Status Tab
Show the status of a Jenkins build in the tab title.
Qu'est-ce que Jenkins Status Tab ?
Jenkins Status Tab est une extension Chrome développée par christianvuerings, et sa fonction principale est "Show the status of a Jenkins build in the tab title.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Jenkins Status Tab
Téléchargez les fichiers d'extension Jenkins Status Tab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Show the status of a Jenkins build in the tab. Notes: - This plugin automatically enables auto refresh which may cause some heavy data usage.
Informations de Base sur l'Extension
Nom | |
ID | bpfcpdnjoengdphlnneoilmphaelapnn |
URL Officiel | https://chrome.google.com/webstore/detail/jenkins-status-tab/bpfcpdnjoengdphlnneoilmphaelapnn |
Description | Show the status of a Jenkins build in the tab title. |
Taille du Fichier | 30.56 KB |
Nombre d'Installations | 17 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2016-11-23 |
Date de Publication | 2016-11-23 |
Évaluation | 1.00/5 Total 1 Évaluations |
Développeur | christianvuerings |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/christianvuerings/jenkins-status-tab |
URL de la Page d'Aide | https://github.com/christianvuerings/jenkins-status-tab/issues |
Langues Prises en Charge | 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:\/\/*\/" ] } |