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.”。
擴展截圖
下載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.                     擴展基本資訊
| 名稱 |   |  
| ID | jminhahhcpbacjggeeighhkcabfbpmcb | 
| 官方網址 | 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"
    }
}  |  |