Google Cloud Console Color Changer
Change the Google Cloud Console main color
Cos'è Google Cloud Console Color Changer?
Google Cloud Console Color Changer è un'estensione di Chrome sviluppata da denisdnc, e la sua funzione principale è "Change the Google Cloud Console main color".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Google Cloud Console Color Changer
Scarica i file di estensione Google Cloud Console Color Changer 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
Sometimes you can confuse yourself when managing 2 environments on Google Cloud Console: Is that Develop or Production? Now you can set a different color for a specific project id! Just pick a color and set the project name for it! Isn't that wonderful? --- Usage Install the extension and open the GCP console or refresh it Then the options window should open Set the project ID and color Save Done! You Should see a different color com GCP console bar
Informazioni di Base sull'Estensione
Nome | Google Cloud Console Color Changer |
ID | obmogbhnnkkkjjldphhphfflcjdalghk |
URL Ufficiale | https://chromewebstore.google.com/detail/google-cloud-console-colo/obmogbhnnkkkjjldphhphfflcjdalghk |
Descrizione | Change the Google Cloud Console main color |
Dimensione del File | 3.59 MB |
Conteggio Installazioni | 371 |
Versione Corrente | 2.0.1 |
Ultimo Aggiornamento | 2023-12-29 |
Data di Pubblicazione | 2020-11-19 |
Valutazione | 4.67/5 Totale 6 Valutazioni |
Sviluppatore | denisdnc |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Google Cloud Console Color Changer", "version": "2.0.1", "description": "Change the Google Cloud Console main color", "permissions": [ "storage" ], "host_permissions": [ "*:\/\/console.cloud.google.com\/*" ], "content_scripts": [ { "run_at": "document_idle", "matches": [ "*:\/\/console.cloud.google.com\/*" ], "js": [ "app.js" ] } ], "options_ui": { "page": "ContactFrom_v5\/index.html", "open_in_tab": true }, "web_accessible_resources": [ { "resources": [ "ContactFrom_v5\/*" ], "matches": [ "*:\/\/*\/*" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |