GCP console colorize

Change GCP console color

Apa itu GCP console colorize?

GCP console colorize adalah ekstensi Chrome yang dikembangkan oleh Yuki Furuyama, dan fitur utamanya adalah "Change GCP console color".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi GCP console colorize

Unduh file ekstensi GCP console colorize dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama GCP console colorize GCP console colorize
ID higjahjicmccalicmgfpokdmooopdhej
URL Resmi https://chromewebstore.google.com/detail/gcp-console-colorize/higjahjicmccalicmgfpokdmooopdhej
Deskripsi Change GCP console color
Ukuran File 58.85 KB
Jumlah Instalasi 3,349
Versi Saat Ini 1.6
Terakhir Diperbarui 2022-09-29
Tanggal Publikasi 2019-01-11
Penilaian 4.90/5 Total 20 Penilaian
Pengembang Yuki Furuyama
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}