Cloud project highlighter
Optionally change color to the cloud console project switcher.
O que é Cloud project highlighter?
Cloud project highlighter é uma extensão do Chrome desenvolvida por ludo, e sua principal característica é "Optionally change color to the cloud console project switcher.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Cloud project highlighter
Baixe arquivos de extensão Cloud project highlighter 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
Apply per-project colors to the Google Cloud console project switcher. Source code: https://github.com/ludoo/cloud-project-color NB: this is not an official Google product, and won't work on Google corp machines.
Informações Básicas da Extensão
Nome | Cloud project highlighter |
ID | jminhahhcpbacjggeeighhkcabfbpmcb |
URL Oficial | https://chromewebstore.google.com/detail/cloud-project-highlighter/jminhahhcpbacjggeeighhkcabfbpmcb |
Descrição | Optionally change color to the cloud console project switcher. |
Tamanho do Arquivo | 90.64 KB |
Contagem de Instalações | 24 |
Versão Atual | 0.0.1.3 |
Última Atualização | 2018-06-15 |
Data de Publicação | 2018-06-15 |
Desenvolvedor | ludo |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/ludoo/cloud-project-color |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Cloud project highlighter", "description": "Optionally change color to the cloud console project switcher.", "version": "0.0.1.3", "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/console.cloud.google.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "*:\/\/console.cloud.google.com\/**" ], "icons": { "128": "icon-128.png" } } |