Jenkins Status Tab
Show the status of a Jenkins build in the tab title.
Cos'è Jenkins Status Tab?
Jenkins Status Tab è un'estensione di Chrome sviluppata da christianvuerings, e la sua funzione principale è "Show the status of a Jenkins build in the tab title.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Jenkins Status Tab
Scarica i file di estensione Jenkins Status Tab in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Show the status of a Jenkins build in the tab.
Notes:
- This plugin automatically enables auto refresh which may cause some heavy data usage. Informazioni di Base sull'Estensione
| Nome | |
| ID | bpfcpdnjoengdphlnneoilmphaelapnn |
| URL Ufficiale | https://chrome.google.com/webstore/detail/jenkins-status-tab/bpfcpdnjoengdphlnneoilmphaelapnn |
| Descrizione | Show the status of a Jenkins build in the tab title. |
| Dimensione del File | 30.56 KB |
| Conteggio Installazioni | 17 |
| Versione Corrente | 0.0.1 |
| Ultimo Aggiornamento | 2016-11-23 |
| Data di Pubblicazione | 2016-11-23 |
| Valutazione | 1.00/5 Totale 1 Valutazioni |
| Sviluppatore | christianvuerings |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/christianvuerings/jenkins-status-tab |
| URL della Pagina di Aiuto | https://github.com/christianvuerings/jenkins-status-tab/issues |
| Lingue Supportate | 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:\/\/*\/"
]
} | |