GCP console colorize

Change GCP console color

Was ist GCP console colorize?

GCP console colorize ist eine Chrome-Erweiterung, die von Yuki Furuyama entwickelt wurde, und ihr Hauptmerkmal ist "Change GCP console color".

Erweiterungsscreenshots

screenshot
screenshot

GCP console colorize-Erweiterungs-CRX-Datei herunterladen

Laden Sie GCP console colorize-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        You can change GCP console header with your favorite color to distinguish multiple GCP projects.                    

Grundlegende Informationen zur Erweiterung

Name GCP console colorize GCP console colorize
ID higjahjicmccalicmgfpokdmooopdhej
Offizielle URL https://chromewebstore.google.com/detail/gcp-console-colorize/higjahjicmccalicmgfpokdmooopdhej
Beschreibung Change GCP console color
Dateigröße 58.85 KB
Installationsanzahl 3,349
Aktuelle Version 1.6
Letztes Update 2022-09-29
Veröffentlichungsdatum 2019-01-11
Bewertung 4.90/5 Insgesamt 20 Bewertungen
Entwickler Yuki Furuyama
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}