Chrome Logger
For server side logging and debugging in chrome console.
Chrome Logger란 무엇입니까?
Chrome Logger은(는) https://chromelogger.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "For server side logging and debugging in chrome console."입니다.
확장 프로그램 스크린샷
Chrome Logger 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension is for debugging server side applications using the chrome javascript console. It was originally inspired by FirePHP. For help getting started check out http://www.chromelogger.com Version 4.0 is basically a complete rewrite to rebrand this extension as Chrome Logger instead of ChromePHP and bring it up to date with the latest Chrome extension guidelines. This extension was formerly known as ChromePHP. Change Log 4.1.3 - Updates extension to use manifest v3 to ensure it works with future versions of Chrome. Also fixes issue where some colors may not work on the options page. 4.1.2 - Fixes race condition where logs sometimes get lost after a page refresh 4.1.1 - Tweak styles of options page 4.1.0 - Improves tab switching logic and updates sticky behavior to be based on host name 4.0.5 - Adds native color picker for choosing colors 4.0.4 - Uses atob function for base 64 decoding 4.0.3 - Fixes race condition in Chrome 28 on linux 4.0.2 - Adds support for console.table Release notes https://github.com/ccampbell/chromelogger/releases
확장 프로그램 기본 정보
이름 | Chrome Logger |
ID | noaneddfkdjfnfdakjjmocngnfkfehhd |
공식 URL | https://chromewebstore.google.com/detail/chrome-logger/noaneddfkdjfnfdakjjmocngnfkfehhd |
설명 | For server side logging and debugging in chrome console. |
파일 크기 | 21.02 KB |
설치 횟수 | 41,306 |
현재 버전 | 4.1.3 |
최근 업데이트 | 2022-07-03 |
출시 날짜 | 2017-09-29 |
평점 | 3.98/5 총 132 개의 평점 |
개발자 | https://chromelogger.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.chromelogger.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chrome Logger", "version": "4.1.3", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "log.js" ], "run_at": "document_start" } ], "background": { "service_worker": "chromelogger.js" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "description": "For server side logging and debugging in chrome console.", "action": { "default_icon": "icon38_disabled.png", "default_title": "Chrome Logger" }, "minimum_chrome_version": "88", "manifest_version": 3, "permissions": [ "webRequest", "storage", "tabs" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } |