Cloud project highlighter

Optionally change color to the cloud console project switcher.

Apa itu Cloud project highlighter?

Cloud project highlighter adalah ekstensi Chrome yang dikembangkan oleh ludo, dan fitur utamanya adalah "Optionally change color to the cloud console project switcher.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Cloud project highlighter

Unduh file ekstensi Cloud project highlighter 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

                        Apply per-project colors to the Google Cloud console project switcher.

Source code: https://github.com/ludoo/cloud-project-color

NB: this is not an official Google product, and won't work on Google corp machines.                    

Informasi Dasar Ekstensi

Nama Cloud project highlighter Cloud project highlighter
ID jminhahhcpbacjggeeighhkcabfbpmcb
URL Resmi https://chromewebstore.google.com/detail/cloud-project-highlighter/jminhahhcpbacjggeeighhkcabfbpmcb
Deskripsi Optionally change color to the cloud console project switcher.
Ukuran File 90.64 KB
Jumlah Instalasi 24
Versi Saat Ini 0.0.1.3
Terakhir Diperbarui 2018-06-15
Tanggal Publikasi 2018-06-15
Pengembang ludo
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/ludoo/cloud-project-color
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cloud project highlighter",
    "description": "Optionally change color to the cloud console project switcher.",
    "version": "0.0.1.3",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/console.cloud.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "*:\/\/console.cloud.google.com\/**"
    ],
    "icons": {
        "128": "icon-128.png"
    }
}