GCP console colorize

Change GCP console color

Wat is GCP console colorize?

GCP console colorize is een Chrome-extensie ontwikkeld door Yuki Furuyama, en de belangrijkste functie is "Change GCP console color".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie GCP console colorize

Download GCP console colorize-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam GCP console colorize GCP console colorize
ID higjahjicmccalicmgfpokdmooopdhej
Officiële URL https://chromewebstore.google.com/detail/gcp-console-colorize/higjahjicmccalicmgfpokdmooopdhej
Beschrijving Change GCP console color
Bestandsgrootte 58.85 KB
Aantal Installaties 3,349
Huidige Versie 1.6
Laatst Bijgewerkt 2022-09-29
Publicatiedatum 2019-01-11
Beoordeling 4.90/5 Totaal 20 Beoordelingen
Ontwikkelaar Yuki Furuyama
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}