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是由Abhinav Swaroop Saxena开发的Chrome扩展程序,该扩展的主要功能是“Log Scanner - This tool will help to scan debug log for SOQL queries and tally up the utilization of SOQL queries.”。
扩展截图
下载Log Scanner扩展crx文件
下载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" } |