Chrome Logger

For server side logging and debugging in chrome console.

Qu'est-ce que Chrome Logger ?

Chrome Logger est une extension Chrome développée par https://chromelogger.com, et sa fonction principale est "For server side logging and debugging in chrome console.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Chrome Logger

Téléchargez les fichiers d'extension Chrome Logger 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

                        This extension is for debugging server side applications using the chrome javascript console.   It was originally inspired by FirePHP.

For help getting started check out
http://www.chromelogger.com

Version 4.0 is basically a complete rewrite to rebrand this extension as Chrome Logger instead of ChromePHP and bring it up to date with the latest Chrome extension guidelines.

This extension was formerly known as ChromePHP.

Change Log
4.1.3 - Updates extension to use manifest v3 to ensure it works with future versions of Chrome. Also fixes issue where some colors may not work on the options page.
4.1.2 - Fixes race condition where logs sometimes get lost after a page refresh
4.1.1 - Tweak styles of options page
4.1.0 - Improves tab switching logic and updates sticky behavior to be based on host name
4.0.5 - Adds native color picker for choosing colors
4.0.4 - Uses atob function for base 64 decoding
4.0.3 - Fixes race condition in Chrome 28 on linux
4.0.2 - Adds support for console.table

Release notes
https://github.com/ccampbell/chromelogger/releases                    

Informations de Base sur l'Extension

Nom Chrome Logger Chrome Logger
ID noaneddfkdjfnfdakjjmocngnfkfehhd
URL Officiel https://chromewebstore.google.com/detail/chrome-logger/noaneddfkdjfnfdakjjmocngnfkfehhd
Description For server side logging and debugging in chrome console.
Taille du Fichier 21.02 KB
Nombre d'Installations 41,306
Version Actuelle 4.1.3
Dernière Mise à Jour 2022-07-03
Date de Publication 2017-09-29
Évaluation 3.98/5 Total 132 Évaluations
Développeur https://chromelogger.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://www.chromelogger.com
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Logger",
    "version": "4.1.3",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "log.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "chromelogger.js"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "For server side logging and debugging in chrome console.",
    "action": {
        "default_icon": "icon38_disabled.png",
        "default_title": "Chrome Logger"
    },
    "minimum_chrome_version": "88",
    "manifest_version": 3,
    "permissions": [
        "webRequest",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}