ServerLog

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

ServerLog क्या है?

ServerLog Sky.Sun द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display server side logs in Chrome dev tools and browser Console."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ServerLog एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}