ServerLog

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

ما هو ServerLog؟

ServerLog هو إضافة Chrome تم تطويرها بواسطة Sky.Sun، والميزة الرئيسية لها هي "Display server side logs in Chrome dev tools and browser Console.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة ServerLog

قم بتنزيل ملفات الامتداد ServerLog بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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
}