Google Cloud Console Color Changer
Change the Google Cloud Console main color
什麼是Google Cloud Console Color Changer?
Google Cloud Console Color Changer是由denisdnc開發的Chrome擴展程式,該擴展的主要功能是“Change the Google Cloud Console main color”。
擴展截圖
下載Google Cloud Console Color Changer擴展crx文件
下載Google Cloud Console Color Changer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Sometimes you can confuse yourself when managing 2 environments on Google Cloud Console: Is that Develop or Production? Now you can set a different color for a specific project id! Just pick a color and set the project name for it! Isn't that wonderful? --- Usage Install the extension and open the GCP console or refresh it Then the options window should open Set the project ID and color Save Done! You Should see a different color com GCP console bar
擴展基本資訊
名稱 | Google Cloud Console Color Changer |
ID | obmogbhnnkkkjjldphhphfflcjdalghk |
官方網址 | https://chromewebstore.google.com/detail/google-cloud-console-colo/obmogbhnnkkkjjldphhphfflcjdalghk |
簡介 | Change the Google Cloud Console main color |
檔案大小 | 3.59 MB |
安裝次數 | 371 |
目前版本 | 2.0.1 |
更新時間 | 2023-12-29 |
上架時間 | 2020-11-19 |
評分 | 4.67/5 共 6 次評分 |
開發者 | denisdnc |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Google Cloud Console Color Changer", "version": "2.0.1", "description": "Change the Google Cloud Console main color", "permissions": [ "storage" ], "host_permissions": [ "*:\/\/console.cloud.google.com\/*" ], "content_scripts": [ { "run_at": "document_idle", "matches": [ "*:\/\/console.cloud.google.com\/*" ], "js": [ "app.js" ] } ], "options_ui": { "page": "ContactFrom_v5\/index.html", "open_in_tab": true }, "web_accessible_resources": [ { "resources": [ "ContactFrom_v5\/*" ], "matches": [ "*:\/\/*\/*" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |