Salesforce Debug Log viewer

Search and view the filtered Salesforce debug logs

Salesforce Debug Log viewer란 무엇입니까?

Salesforce Debug Log viewer은(는) Mehaboob M에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Search and view the filtered Salesforce debug logs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Salesforce Debug Log viewer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Productivity tool allowing the Salesforce/Vlocity developers and administrators to filter the Salesforce debug logs.
- The tool can be used for any log file viewed from the Salesforce 'Debug Logs' screen
- Allows for filtering the number of lines instead of having to navigate through entire logs
- String based search and return of lines before and after the line of interest
- Include/option based of type of logs of interest Eg: User Debug statements
- Custom search within the log file specific string match
- Filtering options to exclude detailed logging statements especially System Entry/Exit, Heap Allocation etc
- Display Salesforce governor limits usage from logs
- Tool has been tested for files up to 20MB in size (generally the maximum size for Salesforce debug logs)
- Log file is not required to be downloaded                    

확장 프로그램 기본 정보

이름 Salesforce Debug Log viewer Salesforce Debug Log viewer
ID hkjclebibhoolmdkpahfndidllgbkalg
공식 URL https://chromewebstore.google.com/detail/salesforce-debug-log-view/hkjclebibhoolmdkpahfndidllgbkalg
설명 Search and view the filtered Salesforce debug logs
파일 크기 24.87 KB
설치 횟수 1,557
현재 버전 0.5
최근 업데이트 2020-06-13
출시 날짜 2020-06-13
평점 2.50/5 총 2 개의 평점
개발자 Mehaboob M
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Salesforce Debug Log viewer",
    "version": "0.5",
    "description": "Search and view the filtered Salesforce debug logs",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/*"
            ],
            "all_frames": true,
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png",
            "256": "images\/icon256.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png",
        "256": "images\/icon256.png"
    }
}