Cloud project highlighter

Optionally change color to the cloud console project switcher.

什么是Cloud project highlighter?

Cloud project highlighter是由ludo开发的Chrome扩展程序,该扩展的主要功能是“Optionally change color to the cloud console project switcher.”。

扩展截图

screenshot

下载Cloud project highlighter扩展crx文件

下载Cloud project highlighter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Cloud project highlighter Cloud project highlighter
ID jminhahhcpbacjggeeighhkcabfbpmcb
官方URL https://chromewebstore.google.com/detail/cloud-project-highlighter/jminhahhcpbacjggeeighhkcabfbpmcb
简介 Optionally change color to the cloud console project switcher.
文件大小 90.64 KB
安装次数 24
当前版本 0.0.1.3
更新时间 2018-06-15
上架时间 2018-06-15
开发者 ludo
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/ludoo/cloud-project-color
支持的语言 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"
    }
}