Apex Debugger

Debug Salesforce apex code with ease

Apex Debuggerคืออะไร?

Apex Debugger เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://apex-debugger.com และคุณลักษณะหลักของมันคือ "Debug Salesforce apex code with ease"

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Apex Debugger

ดาวน์โหลดไฟล์ส่วนขยาย Apex Debugger ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}