GCP console colorize
Change GCP console color
GCP console colorize란 무엇입니까?
GCP console colorize은(는) Yuki Furuyama에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Change GCP console color"입니다.
확장 프로그램 스크린샷
GCP console colorize 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
You can change GCP console header with your favorite color to distinguish multiple GCP projects.
확장 프로그램 기본 정보
이름 | GCP console colorize |
ID | higjahjicmccalicmgfpokdmooopdhej |
공식 URL | https://chromewebstore.google.com/detail/gcp-console-colorize/higjahjicmccalicmgfpokdmooopdhej |
설명 | Change GCP console color |
파일 크기 | 58.85 KB |
설치 횟수 | 3,349 |
현재 버전 | 1.6 |
최근 업데이트 | 2022-09-29 |
출시 날짜 | 2019-01-11 |
평점 | 4.90/5 총 20 개의 평점 |
개발자 | Yuki Furuyama |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GCP console colorize", "description": "Change GCP console color", "author": "Yuki Furuyama", "version": "1.6", "icons": { "16": "icon\/icon_16x16.png", "48": "icon\/icon_48x48.png", "128": "icon\/icon_128x128.png" }, "content_scripts": [ { "matches": [ "https:\/\/console.cloud.google.com\/*" ], "js": [ "main.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "storage", "webNavigation" ] } |