ServerLog

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

Qu'est-ce que ServerLog ?

ServerLog est une extension Chrome développée par Sky.Sun, et sa fonction principale est "Display server side logs in Chrome dev tools and browser Console.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension ServerLog

Téléchargez les fichiers d'extension ServerLog au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom ServerLog ServerLog
ID ghmhlknahaejhdlobgpaoocmjlhgmcci
URL Officiel https://chrome.google.com/webstore/detail/serverlog/ghmhlknahaejhdlobgpaoocmjlhgmcci
Description Display server side logs in Chrome dev tools and browser Console.
Taille du Fichier 2.45 MB
Nombre d'Installations 29
Version Actuelle 2.2.1
Dernière Mise à Jour 2019-10-09
Date de Publication 2019-10-08
Évaluation 5.00/5 Total 1 Évaluations
Développeur Sky.Sun
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/eshengsky/ServerLog/tree/master/chrome-extension-server-log
URL de la Page d'Aide https://github.com/eshengsky/ServerLog/issues
Langues Prises en Charge 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
}