Inspect and view changes in Salesforce Navigator for Lightning 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": "Salesforce Navigator for Lightning",
"version": "4.11.1",
"manifest_version": 3,
"description": "Get more done in Salesforce - list and search records, make new ones, create a task or login as on the fly!",
"action": {
"default_icon": "images/sf-navigator32.png",
"default_popup": "popup.html",
"default_title": "Salesforce Navigator for Lightning"
},
"icons": {
"16": "images/sf-navigator16.png",
"32": "images/sf-navigator32.png",
"48": "images/sf-navigator48.png",
"128": "images/sf-navigator128.png"
},
"web_accessible_resources": [
{
"resources": [
"images/*"
],
"matches": [
"*://*/*"
]
}
],
"background": {
"service_worker": "serviceWorker.js",
"type": "module"
},
"content_scripts": [
{
"css": [
"styles/main.css"
],
"matches": [
"https://*.force.com/*",
"https://*.salesforce.com/*",
"https://*.salesforce-setup.com/*",
"https://*.cloudforce.com/*"
],
"all_frames": true,
"js": [
"contentScript.js",
"shared.js",
"popup.js"
],
"run_at": "document_end"
}
],
"commands": {
"goToTasks": {
"description": "Go directly to Tasks",
"suggested_key": {
"default": "Ctrl+Shift+1"
}
},
"goToReports": {
"description": "Go directly to Reports",
"suggested_key": {
"default": "Ctrl+Shift+2"
}
},
"showSearchBox": {
"description": "Open Search Box",
"suggested_key": {
"default": "Ctrl+Shift+Space"
}
},
"showAppMenu": {
"description": "Open Lightning App Menu",
"suggested_key": {
"default": "Ctrl+Shift+A"
}
}
},
"permissions": [
"activeTab",
"management",
"storage",
"clipboardRead",
"cookies",
"scripting"
],
"host_permissions": [
"https://*.force.com/*",
"https://*.salesforce.com/*",
"https://*.cloudforce.com/*"
]
}