ServerLog

Display server side logs in Chrome dev tools and browser Console.

ServerLog란 무엇입니까?

ServerLog은(는) Sky.Sun에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display server side logs in Chrome dev tools and browser Console."입니다.

확장 프로그램 스크린샷

screenshot

ServerLog 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Supported extensions for ServerLog library (https://github.com/eshengsky/ServerLog), used to view server side logs in Chrome dev tools and Console panel.

Functional features:
Good log viewing experience.
Only the logs associated with you will be displayed, and the logs generated by others will not be exported to your dev tools.
You can now view both the client and server side logs in the browser Console.                    

확장 프로그램 기본 정보

이름 ServerLog ServerLog
ID ghmhlknahaejhdlobgpaoocmjlhgmcci
공식 URL https://chrome.google.com/webstore/detail/serverlog/ghmhlknahaejhdlobgpaoocmjlhgmcci
설명 Display server side logs in Chrome dev tools and browser Console.
파일 크기 2.45 MB
설치 횟수 29
현재 버전 2.2.1
최근 업데이트 2019-10-09
출시 날짜 2019-10-08
평점 5.00/5 총 1 개의 평점
개발자 Sky.Sun
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/eshengsky/ServerLog/tree/master/chrome-extension-server-log
도움말 페이지 URL https://github.com/eshengsky/ServerLog/issues
지원되는 언어 en-US,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ServerLog",
    "description": "__MSG_description__",
    "version": "2.2.1",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "serverlog.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "19": "icon.png",
        "38": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Server Log",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "devtools_page": "devtools.html",
    "default_locale": "en_US",
    "manifest_version": 2
}