Google Cloud Console Production Warning
Show a warning when viewing a production environment in the Google Cloud Console, Datastore admin or Stackdriver.
Google Cloud Console Production Warning란 무엇입니까?
Google Cloud Console Production Warning은(는) Shane Bell에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show a warning when viewing a production environment in the Google Cloud Console, Datastore admin or Stackdriver."입니다.
확장 프로그램 스크린샷
Google Cloud Console Production Warning 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This plugin checks the name of the current project open in the Google Cloud Console and if it is a production project then it shows a big red "PRODUCTION" watermark over the page. A project is considered a production project if it matches any of the patterns configured in the options. By default this is any project that matches the pattern `^.*-prod$` The text and color of the watermark can also be configured in the options ("PRODUCTION" and red by default). The plugin runs on all http://console.cloud.google.com pages, all https://app.google.stackdriver.com pages as well as the AppEngine datastore admin Python module.
확장 프로그램 기본 정보
이름 | |
ID | dpihknlpffbpjaegjocpbgdickpjiohl |
공식 URL | https://chrome.google.com/webstore/detail/google-cloud-console-prod/dpihknlpffbpjaegjocpbgdickpjiohl |
설명 | Show a warning when viewing a production environment in the Google Cloud Console, Datastore admin or Stackdriver. |
파일 크기 | 64.74 KB |
설치 횟수 | 526 |
현재 버전 | 1.1.3 |
최근 업데이트 | 2019-03-08 |
출시 날짜 | 2019-03-08 |
평점 | 4.60/5 총 5 개의 평점 |
개발자 | Shane Bell |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/shanebell/google-cloud-console-production-warning |
개인정보 보호 정책 페이지 URL | https://github.com/shanebell/JaSON/blob/master/privacy-policy.md |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Cloud Console Production Warning", "description": "Show a warning when viewing a production environment in the Google Cloud Console, Datastore admin or Stackdriver.", "version": "1.1.3", "permissions": [ "activeTab", "storage" ], "icons": { "16": "images\/icon16x16.png", "48": "images\/icon48x48.png", "128": "images\/icon128x128.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "content_scripts": [ { "matches": [ "https:\/\/console.cloud.google.com\/*", "https:\/\/*.appspot.com\/_ah\/datastore_admin*", "https:\/\/app.google.stackdriver.com\/*" ], "js": [ "javascript\/storage.js", "javascript\/script.js", "lib\/jquery\/dist\/jquery.min.js", "lib\/lodash\/dist\/lodash.min.js" ] } ], "manifest_version": 2 } |