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 là gì?

Log Scanner là một tiện ích mở rộng Chrome được phát triển bởi Abhinav Swaroop Saxena, và tính năng chính của nó là "Log Scanner - This tool will help to scan debug log for SOQL queries and tally up the utilization of SOQL queries.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Log Scanner

Tải xuống các tệp mở rộng Log Scanner dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Log Scanner Log Scanner
ID gmoaoplkknaaeogojpllagppknojbikg
URL Chính Thức https://chromewebstore.google.com/detail/log-scanner/gmoaoplkknaaeogojpllagppknojbikg
Mô tả Log Scanner - This tool will help to scan debug log for SOQL queries and tally up the utilization of SOQL queries.
Kích Thước Tệp 90.38 KB
Số Lần Cài Đặt 43
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-10-11
Ngày Phát Hành 2020-10-07
Đánh Giá 5.00/5 Tổng số 13 Đánh Giá
Nhà Phát Triển Abhinav Swaroop Saxena
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}