GCP console colorize
Change GCP console color
Hvad er GCP console colorize?
GCP console colorize er en Chrome-udvidelse udviklet af Yuki Furuyama, og dens hovedfunktion er "Change GCP console color".
Udvidelsesskærmbilleder
Download GCP console colorize-udvidelses-CRX-fil
Download GCP console colorize-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
You can change GCP console header with your favorite color to distinguish multiple GCP projects. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | higjahjicmccalicmgfpokdmooopdhej |
| Officiel URL | https://chromewebstore.google.com/detail/gcp-console-colorize/higjahjicmccalicmgfpokdmooopdhej |
| Beskrivelse | Change GCP console color |
| Filstørrelse | 58.85 KB |
| Antal Installationer | 3,349 |
| Nuværende Version | 1.6 |
| Senest Opdateret | 2022-09-29 |
| Udgivelsesdato | 2019-01-11 |
| Bedømmelse | 4.90/5 Samlet 20 Bedømmelser |
| Udvikler | Yuki Furuyama |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "GCP console colorize",
"description": "Change GCP console color",
"author": "Yuki Furuyama",
"version": "1.6",
"icons": {
"16": "icon\/icon_16x16.png",
"48": "icon\/icon_48x48.png",
"128": "icon\/icon_128x128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/console.cloud.google.com\/*"
],
"js": [
"main.js"
]
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"permissions": [
"storage",
"webNavigation"
]
} | |