Inspect and view changes in Apex Debugger source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Apex Debugger",
"short_name": "Apex Debgr",
"version": "0.8.0",
"manifest_version": 3,
"author": "Moti Korets",
"icons": {
"16": "img/16.png",
"48": "img/48.png",
"128": "img/128.png"
},
"description": "Debug Salesforce apex code with ease",
"background": {
"service_worker": "js/background.js"
},
"options_ui": {
"page": "html/options.html"
},
"action": {
"default_icon": {
"16": "img/16.png"
}
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; connect-src 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/*",
"https://*.salesforce-setup.com/p/setup/layout/ApexDebugLogDetailEdit/*"
],
"js": [
"js/lib/beautify/1.7.4/beautify.min.js",
"js/lib/beautify/1.7.4/beautify-html.min.js",
"js/sfdc.debug.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https://*.force.com/setup/ui/listApexTraces.apexp*",
"https://*.salesforce.com/setup/ui/listApexTraces.apexp*",
"https://*.salesforce-setup.com/setup/ui/listApexTraces.apexp*"
],
"css": [
"css/debug.logs.css"
],
"js": [
"js/sfdc.debug.btn.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https://*.force.com/*",
"https://*.salesforce.com/*",
"https://*.salesforce-setup.com/*"
],
"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-setup.com/01p*",
"https://*.salesforce.com/setup/build/allTriggers.apexp*",
"https://*.salesforce-setup.com/setup/build/allTriggers.apexp*"
],
"js": [
"js/sfdc.classes.js"
],
"run_at": "document_idle"
}
],
"permissions": [
"storage"
],
"host_permissions": [
"https://*.force.com/*",
"https://*.salesforce.com/*",
"https://*.salesforce-setup.com/*"
]
}