Apex Debugger

Debug Salesforce apex code with ease

Apex Debugger란 무엇입니까?

Apex Debugger은(는) https://apex-debugger.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Debug Salesforce apex code with ease"입니다.

확장 프로그램 스크린샷

Apex Debugger 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Apex debugging with ease.
Improved debug logs for Salesforce.
Press Shift+w from any salesforce page to open Logs.
Click on extension to configure keyboard shortcuts.

• Search in  logs 
• Filter logs 
• Delete all logs 
• Add current User
• Indent structured data such as sObject, List, XML or JSON
• Improved view with custom themes
• Any Id in logs is a link to respective Object page (Class, Trigger, Validation Rule e.t.c)
• Lightning compatible                    

확장 프로그램 기본 정보

이름 Apex Debugger Apex Debugger
ID mpckkbblhbfngaininanfjpdfjhbncjo
공식 URL https://chromewebstore.google.com/detail/apex-debugger/mpckkbblhbfngaininanfjpdfjhbncjo
설명 Debug Salesforce apex code with ease
파일 크기 112 KB
설치 횟수 20,000
현재 버전 0.7.16
최근 업데이트 2023-06-22
출시 날짜 2019-07-21
평점 4.41/5 총 29 개의 평점
개발자 https://apex-debugger.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://apex-debugger.com
도움말 페이지 URL https://github.com/motiko/sfdc-debug-logs/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Apex Debugger",
    "short_name": "Apex Debgr",
    "version": "0.7.16",
    "manifest_version": 2,
    "author": "Moti Korets",
    "icons": {
        "16": "img\/16.png",
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "description": "Debug Salesforce apex code with ease",
    "background": {
        "scripts": [
            "js\/lib\/browser-polyfill\/0.2.1\/browser-polyfill.min.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "html\/options.html"
    },
    "browser_action": {
        "default_icon": "img\/16.png"
    },
    "content_security_policy": "script-src 'self' ; object-src 'self'; connect-src https:\/\/adbg.herokuapp.com https:\/\/*.force.com https:\/\/*.salesforce.com",
    "content_scripts": [
        {
            "css": [
                "css\/debug.css"
            ],
            "matches": [
                "https:\/\/*.force.com\/p\/setup\/layout\/ApexDebugLogDetailEdit\/*",
                "https:\/\/*.salesforce.com\/p\/setup\/layout\/ApexDebugLogDetailEdit\/*"
            ],
            "js": [
                "js\/lib\/browser-polyfill\/0.2.1\/browser-polyfill.min.js",
                "js\/lib\/mousetrap\/1.6.1\/mousetrap.min.js",
                "js\/lib\/beautify\/1.7.4\/beautify.min.js",
                "js\/lib\/beautify\/1.7.4\/beautify-html.min.js",
                "js\/utils.js",
                "js\/sfdc.debug.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.force.com\/setup\/ui\/listApexTraces.apexp*",
                "https:\/\/*.salesforce.com\/setup\/ui\/listApexTraces.apexp*"
            ],
            "css": [
                "css\/debug.logs.css"
            ],
            "js": [
                "js\/lib\/browser-polyfill\/0.2.1\/browser-polyfill.min.js",
                "js\/lib\/mousetrap\/1.6.1\/mousetrap.min.js",
                "js\/utils.js",
                "js\/sfdc.debug.btn.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.force.com\/*",
                "https:\/\/*.salesforce.com\/*"
            ],
            "js": [
                "js\/lib\/browser-polyfill\/0.2.1\/browser-polyfill.min.js",
                "js\/default_shortcuts.js",
                "js\/lib\/mousetrap\/1.6.1\/mousetrap.min.js",
                "js\/utils.js",
                "js\/shortcuts.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.force.com\/01p*",
                "https:\/\/*.force.com\/setup\/build\/allTriggers.apexp*",
                "https:\/\/*.salesforce.com\/01p*",
                "https:\/\/*.salesforce.com\/setup\/build\/allTriggers.apexp*"
            ],
            "js": [
                "js\/sfdc.classes.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/*.force.com\/*",
        "https:\/\/*.salesforce.com\/*",
        "storage"
    ]
}