Cloud project highlighter

Optionally change color to the cloud console project switcher.

What is Cloud project highlighter?

Cloud project highlighter is a Chrome extension developed by ludo, and its main feature is "Optionally change color to the cloud console project switcher.".

Extension Screenshots

screenshot

Download Cloud project highlighter Extension CRX File

Download Cloud project highlighter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Cloud project highlighter Cloud project highlighter
ID jminhahhcpbacjggeeighhkcabfbpmcb
Official URL https://chromewebstore.google.com/detail/cloud-project-highlighter/jminhahhcpbacjggeeighhkcabfbpmcb
Description Optionally change color to the cloud console project switcher.
File Size 90.64 KB
Installation Count 24
Current Version 0.0.1.3
Last Updated 2018-06-15
Publish Date 2018-06-15
Developer ludo
Email [email protected]
Payment Type free
Extension Website https://github.com/ludoo/cloud-project-color
Supported Languages 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"
    }
}