GCP console colorize
Change GCP console color
Vad är GCP console colorize?
GCP console colorize är en Chrome-tillägg utvecklad av Yuki Furuyama, och dess huvudfunktion är "Change GCP console color".
Tilläggsskärmbilder
Ladda ner GCP console colorize-förlängningens CRX-fil
Ladda ner GCP console colorize-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
You can change GCP console header with your favorite color to distinguish multiple GCP projects. Grundläggande Information om Tillägg
| Namn | |
| ID | higjahjicmccalicmgfpokdmooopdhej |
| Officiell webbadress | https://chromewebstore.google.com/detail/gcp-console-colorize/higjahjicmccalicmgfpokdmooopdhej |
| Beskrivning | Change GCP console color |
| Filstorlek | 58.85 KB |
| Antal Installationer | 3,349 |
| Aktuell Version | 1.6 |
| Senast Uppdaterad | 2022-09-29 |
| Publiceringsdatum | 2019-01-11 |
| Betyg | 4.90/5 Totalt 20 Betyg |
| Utvecklare | Yuki Furuyama |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
]
} | |