SOQL Extractor and Analyzer for SalesForce

Extract SOQL queries with their execution counts from Debug Logs of Salesforce. Helps you analyze the 'Too Many SOQLs' error.

SOQL Extractor and Analyzer for SalesForce란 무엇입니까?

SOQL Extractor and Analyzer for SalesForce은(는) Rajiv Bhatt에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extract SOQL queries with their execution counts from Debug Logs of Salesforce. Helps you analyze the 'Too Many SOQLs' error."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

SOQL Extractor and Analyzer for SalesForce 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Update 2.0.0.0: 
Works only with Classic mode of Salesforce. Users complained about not being able to install the extension. Updated manifest.json file so this should be resolved. 

Update 0.0.0.9: 
Manifest.json permissions were updated to enable the extension for lightning

Update 0.0.0.8: 
Uploading the same package to make the extension available on the new version of webstore. No changes in functionality.

Update 0.0.0.5: Added two new features 
1. Added an option to view nested method calls and the ability to expand and collapse them. Please note that it would display only user debug and soql statements between the method entry exits. This is a Beta release of this feature and I am looking forward for some feedback as to what are the other details that would be helpful to developers.
2. Ability to filter the log files. When the "Filter Log Type" is checked, it would show you further checkboxes which you can use to filter the contents of the log file. It would show you only those statements. 


Update 0.0.0.3: The extension icon will now be visible only after you open a debug log. This is based on the best practice (memory optimization) recommended by chrome docs.

This extension helps you extract and analyze the SOQL queries from the debug logs of Salesforce. Open up any Debug Log on Salesforce and then on just "One-Click" of the extension it would display the following information: 

1. All the SOQL queries along with their execution count. 

2. The extension would also display all the Objects (Standard/Custom) on which these SOQL queries are executed. 
For ex: If you have got queries that hit the Account object 5 times, you might want to have a relook at the code and optimize the code in a way that you get all the data from the Account object in single SOQL query (instead of querying it 5 times).

- These statistics usually help in debugging the error "Too Many SOQLs". 
- They would also help you to optimize the performance of your application. 

Do recommend the extension with you friends and colleagues if you like it.

Also, if you like the extension, please don't forget to Rate it on the Chrome Extension Webstore.

Currently Working on Future Enhancements: 
1. Extracting specific category of statements (debug/approvals etc) from the log file.

Feedback/Suggestions/Ideas/Comments most welcome.

Thanks again and I hope this extension saves your time and makes you more productive!

For any queries: [email protected]                    

확장 프로그램 기본 정보

이름 SOQL Extractor and Analyzer for SalesForce SOQL Extractor and Analyzer for SalesForce
ID deihalhihjdilndoidoclmhmgllebkfj
공식 URL https://chromewebstore.google.com/detail/soql-extractor-and-analyz/deihalhihjdilndoidoclmhmgllebkfj
설명 Extract SOQL queries with their execution counts from Debug Logs of Salesforce. Helps you analyze the 'Too Many SOQLs' error.
파일 크기 56.25 KB
설치 횟수 6,054
현재 버전 2.0.0.0
최근 업데이트 2019-04-15
출시 날짜 2019-04-15
평점 4.88/5 총 16 개의 평점
개발자 Rajiv Bhatt
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SOQL Extractor and Analyzer for SalesForce",
    "short_name": "Extract SOQL",
    "version": "2.0.0.0",
    "manifest_version": 2,
    "description": "Extract SOQL queries with their execution counts from Debug Logs of Salesforce. Helps you analyze the 'Too Many SOQLs' error.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/*.salesforce.com\/",
        "https:\/\/*.force.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.visual.force.com\/*",
                "https:\/\/*.lightning.force.com\/*"
            ],
            "js": [
                "jquery-1.4.2.min.js",
                "content_script.js",
                "CollapsibleLists.compressed.js"
            ],
            "css": [
                "collapse.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*.png",
        "content_script.js",
        "jquery-1.4.2.min.js",
        "CollapsibleLists.compressed.js"
    ],
    "page_action": {
        "default_icon": "sfglass19x19.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "sfglass16x16.png",
        "48": "sfglass48x48.png",
        "128": "sfglass128x128.png"
    }
}