Cloud project highlighter
Optionally change color to the cloud console project switcher.
Vad är Cloud project highlighter?
Cloud project highlighter är en Chrome-tillägg utvecklad av ludo, och dess huvudfunktion är "Optionally change color to the cloud console project switcher.".
Tilläggsskärmbilder
Ladda ner Cloud project highlighter-förlängningens CRX-fil
Ladda ner Cloud project highlighter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Cloud project highlighter |
ID | jminhahhcpbacjggeeighhkcabfbpmcb |
Officiell webbadress | https://chromewebstore.google.com/detail/cloud-project-highlighter/jminhahhcpbacjggeeighhkcabfbpmcb |
Beskrivning | Optionally change color to the cloud console project switcher. |
Filstorlek | 90.64 KB |
Antal Installationer | 24 |
Aktuell Version | 0.0.1.3 |
Senast Uppdaterad | 2018-06-15 |
Publiceringsdatum | 2018-06-15 |
Utvecklare | ludo |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/ludoo/cloud-project-color |
Stödda Språk | 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" } } |