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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } |