Cloud project highlighter

Optionally change color to the cloud console project switcher.

Hvad er Cloud project highlighter?

Cloud project highlighter er en Chrome-udvidelse udviklet af ludo, og dens hovedfunktion er "Optionally change color to the cloud console project switcher.".

Udvidelsesskærmbilleder

screenshot

Download Cloud project highlighter-udvidelses-CRX-fil

Download Cloud project highlighter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Cloud project highlighter Cloud project highlighter
ID jminhahhcpbacjggeeighhkcabfbpmcb
Officiel URL https://chromewebstore.google.com/detail/cloud-project-highlighter/jminhahhcpbacjggeeighhkcabfbpmcb
Beskrivelse Optionally change color to the cloud console project switcher.
Filstørrelse 90.64 KB
Antal Installationer 24
Nuværende Version 0.0.1.3
Senest Opdateret 2018-06-15
Udgivelsesdato 2018-06-15
Udvikler ludo
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/ludoo/cloud-project-color
Understøttede Sprog 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"
    }
}