Apex Debugger

Debug Salesforce apex code with ease

What is Apex Debugger?

Apex Debugger is a Chrome extension developed by https://apex-debugger.com, and its main feature is "Debug Salesforce apex code with ease".

Extension Screenshots

Download Apex Debugger Extension CRX File

Download Apex Debugger extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Apex Debugger Apex Debugger
ID mpckkbblhbfngaininanfjpdfjhbncjo
Official URL https://chromewebstore.google.com/detail/apex-debugger/mpckkbblhbfngaininanfjpdfjhbncjo
Description Debug Salesforce apex code with ease
File Size 112 KB
Installation Count 20,000
Current Version 0.7.16
Last Updated 2023-06-22
Publish Date 2019-07-21
Rating 4.41/5 Total 29 Ratings
Developer https://apex-debugger.com
Email [email protected]
Payment Type free
Extension Website https://apex-debugger.com
Help Page URL https://github.com/motiko/sfdc-debug-logs/issues
Supported Languages 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"
    ]
}