Cloud project highlighter
Optionally change color to the cloud console project switcher.
Qu'est-ce que Cloud project highlighter ?
Cloud project highlighter est une extension Chrome développée par ludo, et sa fonction principale est "Optionally change color to the cloud console project switcher.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Cloud project highlighter
Téléchargez les fichiers d'extension Cloud project highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Cloud project highlighter |
ID | jminhahhcpbacjggeeighhkcabfbpmcb |
URL Officiel | https://chromewebstore.google.com/detail/cloud-project-highlighter/jminhahhcpbacjggeeighhkcabfbpmcb |
Description | Optionally change color to the cloud console project switcher. |
Taille du Fichier | 90.64 KB |
Nombre d'Installations | 24 |
Version Actuelle | 0.0.1.3 |
Dernière Mise à Jour | 2018-06-15 |
Date de Publication | 2018-06-15 |
Développeur | ludo |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ludoo/cloud-project-color |
Langues Prises en Charge | 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" } } |