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文件

下载ServerLog扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
}