Log Scanner

Log Scanner - This tool will help to scan debug log for SOQL queries and tally up the utilization of SOQL queries.

Was ist Log Scanner?

Log Scanner ist eine Chrome-Erweiterung, die von Abhinav Swaroop Saxena entwickelt wurde, und ihr Hauptmerkmal ist "Log Scanner - This tool will help to scan debug log for SOQL queries and tally up the utilization of SOQL queries.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Log Scanner-Erweiterungs-CRX-Datei herunterladen

Laden Sie Log Scanner-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        SFDC Log Scanner tool is a 'Google Chrome' extension built with Javascript which eliminates human efforts while scanning debug log to look at SOQL/sObject utilization.

As a Salesforce developer, we do come across scenarios where we want to to look at SOQL/sObject utilization in the Salesforce debug log. This tool helps to scan the debug log for SOQL queries and provides the summary of all the SOQL queries utilization in the debug log. Along with this, the tool will also provide the count of each sObject referred in the SOQL query. And this works for lightning too!                    

Grundlegende Informationen zur Erweiterung

Name Log Scanner Log Scanner
ID gmoaoplkknaaeogojpllagppknojbikg
Offizielle URL https://chromewebstore.google.com/detail/log-scanner/gmoaoplkknaaeogojpllagppknojbikg
Beschreibung Log Scanner - This tool will help to scan debug log for SOQL queries and tally up the utilization of SOQL queries.
Dateigröße 90.38 KB
Installationsanzahl 43
Aktuelle Version 1.0
Letztes Update 2020-10-11
Veröffentlichungsdatum 2020-10-07
Bewertung 5.00/5 Insgesamt 13 Bewertungen
Entwickler Abhinav Swaroop Saxena
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "author": "Abhinav Swaroop Saxena",
    "name": "Log Scanner",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Log Scanner - This tool will help to scan debug log for SOQL queries and tally up the utilization of SOQL queries.",
    "icons": {
        "48": "img\/icon128_log-scanner.jpg",
        "128": "img\/icon128_log-scanner.jpg"
    },
    "browser_action": {
        "default_icon": "img\/icon128_log-scanner.jpg"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/p\/setup\/layout\/ApexDebugLogDetailEdit\/d*"
            ],
            "css": [
                "css\/bootstrap.min.css"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/bootstrap.min.js",
                "js\/popper.min.js",
                "js\/localScript.js"
            ],
            "all_frames": true
        }
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}