Cloud project highlighter
Optionally change color to the cloud console project switcher.
Wat is Cloud project highlighter?
Cloud project highlighter is een Chrome-extensie ontwikkeld door ludo, en de belangrijkste functie is "Optionally change color to the cloud console project switcher.".
Extensie Screenshots
Download het CRX-bestand van de extensie Cloud project highlighter
Download Cloud project highlighter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Cloud project highlighter |
ID | jminhahhcpbacjggeeighhkcabfbpmcb |
Officiële URL | https://chromewebstore.google.com/detail/cloud-project-highlighter/jminhahhcpbacjggeeighhkcabfbpmcb |
Beschrijving | Optionally change color to the cloud console project switcher. |
Bestandsgrootte | 90.64 KB |
Aantal Installaties | 24 |
Huidige Versie | 0.0.1.3 |
Laatst Bijgewerkt | 2018-06-15 |
Publicatiedatum | 2018-06-15 |
Ontwikkelaar | ludo |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/ludoo/cloud-project-color |
Ondersteunde Talen | 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" } } |