GCP console colorize
Change GCP console color
What is GCP console colorize?
GCP console colorize is a Chrome extension developed by Yuki Furuyama, and its main feature is "Change GCP console color".
Extension Screenshots
Download GCP console colorize Extension CRX File
Download GCP console colorize extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
You can change GCP console header with your favorite color to distinguish multiple GCP projects.
Extension Basic Information
Name | GCP console colorize |
ID | higjahjicmccalicmgfpokdmooopdhej |
Official URL | https://chromewebstore.google.com/detail/gcp-console-colorize/higjahjicmccalicmgfpokdmooopdhej |
Description | Change GCP console color |
File Size | 58.85 KB |
Installation Count | 3,349 |
Current Version | 1.6 |
Last Updated | 2022-09-29 |
Publish Date | 2019-01-11 |
Rating | 4.90/5 Total 20 Ratings |
Developer | Yuki Furuyama |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |