Inspect and view changes in Salesforce Record Downloader 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
{
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icon-webstore-128.png"
},
"content_scripts": [
{
"all_frames": true,
"css": [
"button.css",
"inspect-inline.css"
],
"js": [
"inspector.js",
"button.js",
"inspect-inline.js"
],
"matches": [
"https://*.salesforce.com/*",
"https://*.visual.force.com/*",
"https://*.lightning.force.com/*"
]
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'none'",
"description": "Tool to download Salesforce Record Data",
"icons": {
"128": "icon-webstore-128.png"
},
"incognito": "split",
"manifest_version": 2,
"minimum_chrome_version": "50",
"name": "Salesforce Record Downloader",
"permissions": [
"https://*.salesforce.com/*",
"https://*.force.com/*",
"cookies"
],
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "2.7",
"web_accessible_resources": [
"popup.html"
]
}