Cloud project highlighter
Optionally change color to the cloud console project switcher.
Cloud project highlighter là gì?
Cloud project highlighter là một tiện ích mở rộng Chrome được phát triển bởi ludo, và tính năng chính của nó là "Optionally change color to the cloud console project switcher.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Cloud project highlighter
Tải xuống các tệp mở rộng Cloud project highlighter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Cloud project highlighter |
ID | jminhahhcpbacjggeeighhkcabfbpmcb |
URL Chính Thức | https://chromewebstore.google.com/detail/cloud-project-highlighter/jminhahhcpbacjggeeighhkcabfbpmcb |
Mô tả | Optionally change color to the cloud console project switcher. |
Kích Thước Tệp | 90.64 KB |
Số Lần Cài Đặt | 24 |
Phiên Bản Hiện Tại | 0.0.1.3 |
Cập Nhật Lần Cuối | 2018-06-15 |
Ngày Phát Hành | 2018-06-15 |
Nhà Phát Triển | ludo |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ludoo/cloud-project-color |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |