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.
拡張機能の基本情報
名前 | 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 |
Eメール | [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" } } |