ServerLog

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

Co to jest ServerLog?

ServerLog to rozszerzenie Chrome opracowane przez Sky.Sun, a jego główną funkcją jest „Display server side logs in Chrome dev tools and browser Console.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ServerLog

Pobierz pliki rozszerzeń ServerLog w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa ServerLog ServerLog
ID ghmhlknahaejhdlobgpaoocmjlhgmcci
Oficjalny URL https://chrome.google.com/webstore/detail/serverlog/ghmhlknahaejhdlobgpaoocmjlhgmcci
Opis Display server side logs in Chrome dev tools and browser Console.
Rozmiar pliku 2.45 MB
Liczba instalacji 29
Aktualna Wersja 2.2.1
Ostatnia Aktualizacja 2019-10-09
Data Publikacji 2019-10-08
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Sky.Sun
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/eshengsky/ServerLog/tree/master/chrome-extension-server-log
Adres URL Strony Pomocy https://github.com/eshengsky/ServerLog/issues
Obsługiwane Języki 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
}