Salesforce Record Downloader
Tool to download Salesforce Record Data
What is Salesforce Record Downloader?
Salesforce Record Downloader is a Chrome extension developed by OSI Consulting, and its main feature is "Tool to download Salesforce Record Data".
Extension Screenshots
Download Salesforce Record Downloader Extension CRX File
Download Salesforce Record Downloader 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
This tool will help you download the current opened record in salesforce domain. This will be useful when you want to quickly share the data with external entities. The data will be download as CSV and can be easily shared. Upcoming Features : - Option to Download the List View
Extension Basic Information
Name | Salesforce Record Downloader |
ID | jpjacljhnlilceoacphmpdomjogoghno |
Official URL | https://chromewebstore.google.com/detail/salesforce-record-downloa/jpjacljhnlilceoacphmpdomjogoghno |
Description | Tool to download Salesforce Record Data |
File Size | 178 KB |
Installation Count | 44 |
Current Version | 2.7 |
Last Updated | 2016-09-06 |
Publish Date | 2016-09-05 |
Rating | 5.00/5 Total 3 Ratings |
Developer | OSI Consulting |
[email protected] | |
Payment Type | free |
Supported Languages | en-US |
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" ] } |