Log Scanner

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

O que é Log Scanner?

Log Scanner é uma extensão do Chrome desenvolvida por Abhinav Swaroop Saxena, e sua principal característica é "Log Scanner - This tool will help to scan debug log for SOQL queries and tally up the utilization of SOQL queries.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Log Scanner

Baixe arquivos de extensão Log Scanner no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Log Scanner Log Scanner
ID gmoaoplkknaaeogojpllagppknojbikg
URL Oficial https://chromewebstore.google.com/detail/log-scanner/gmoaoplkknaaeogojpllagppknojbikg
Descrição Log Scanner - This tool will help to scan debug log for SOQL queries and tally up the utilization of SOQL queries.
Tamanho do Arquivo 90.38 KB
Contagem de Instalações 43
Versão Atual 1.0
Última Atualização 2020-10-11
Data de Publicação 2020-10-07
Classificação 5.00/5 Total de 13 Avaliações
Desenvolvedor Abhinav Swaroop Saxena
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
}