Jenkins Status Tab
Show the status of a Jenkins build in the tab title.
O que é Jenkins Status Tab?
Jenkins Status Tab é uma extensão do Chrome desenvolvida por christianvuerings, e sua principal característica é "Show the status of a Jenkins build in the tab title.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Jenkins Status Tab
Baixe arquivos de extensão Jenkins Status Tab no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Show the status of a Jenkins build in the tab. Notes: - This plugin automatically enables auto refresh which may cause some heavy data usage.
Informações Básicas da Extensão
Nome | |
ID | bpfcpdnjoengdphlnneoilmphaelapnn |
URL Oficial | https://chrome.google.com/webstore/detail/jenkins-status-tab/bpfcpdnjoengdphlnneoilmphaelapnn |
Descrição | Show the status of a Jenkins build in the tab title. |
Tamanho do Arquivo | 30.56 KB |
Contagem de Instalações | 17 |
Versão Atual | 0.0.1 |
Última Atualização | 2016-11-23 |
Data de Publicação | 2016-11-23 |
Classificação | 1.00/5 Total de 1 Avaliações |
Desenvolvedor | christianvuerings |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/christianvuerings/jenkins-status-tab |
URL da Página de Ajuda | https://github.com/christianvuerings/jenkins-status-tab/issues |
Idiomas Suportados | 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:\/\/*\/" ] } |