ServerLog

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

What is ServerLog?

ServerLog is a Chrome extension developed by Sky.Sun, and its main feature is "Display server side logs in Chrome dev tools and browser Console.".

Extension Screenshots

screenshot

Download ServerLog Extension CRX File

Download ServerLog extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name ServerLog ServerLog
ID ghmhlknahaejhdlobgpaoocmjlhgmcci
Official URL https://chrome.google.com/webstore/detail/serverlog/ghmhlknahaejhdlobgpaoocmjlhgmcci
Description Display server side logs in Chrome dev tools and browser Console.
File Size 2.45 MB
Installation Count 29
Current Version 2.2.1
Last Updated 2019-10-09
Publish Date 2019-10-08
Rating 5.00/5 Total 1 Ratings
Developer Sky.Sun
Email [email protected]
Payment Type free
Extension Website https://github.com/eshengsky/ServerLog/tree/master/chrome-extension-server-log
Help Page URL https://github.com/eshengsky/ServerLog/issues
Supported Languages 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
}