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
官方網址 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
}