Log Scanner
Log Scanner - This tool will help to scan debug log for SOQL queries and tally up the utilization of SOQL queries.
Τι είναι το Log Scanner;
Το Log Scanner είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Abhinav Swaroop Saxena, και η κύρια λειτουργία του είναι "Log Scanner - This tool will help to scan debug log for SOQL queries and tally up the utilization of SOQL queries.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Log Scanner
Λήψη αρχείων επέκτασης Log Scanner σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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!
Βασικές Πληροφορίες Επέκτασης
Όνομα | Log Scanner |
ID | gmoaoplkknaaeogojpllagppknojbikg |
Επίσημο URL | https://chromewebstore.google.com/detail/log-scanner/gmoaoplkknaaeogojpllagppknojbikg |
Περιγραφή | Log Scanner - This tool will help to scan debug log for SOQL queries and tally up the utilization of SOQL queries. |
Μέγεθος Αρχείου | 90.38 KB |
Αριθμός Εγκαταστάσεων | 43 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2020-10-11 |
Ημερομηνία Δημοσίευσης | 2020-10-07 |
Αξιολόγηση | 5.00/5 Συνολικά 13 Αξιολογήσεις |
Προγραμματιστής | Abhinav Swaroop Saxena |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" } |