Salesforce Record Downloader
Tool to download Salesforce Record Data
Was ist Salesforce Record Downloader?
Salesforce Record Downloader ist eine Chrome-Erweiterung, die von OSI Consulting entwickelt wurde, und ihr Hauptmerkmal ist "Tool to download Salesforce Record Data".
Erweiterungsscreenshots
Salesforce Record Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Salesforce Record Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Salesforce Record Downloader |
ID | jpjacljhnlilceoacphmpdomjogoghno |
Offizielle URL | https://chromewebstore.google.com/detail/salesforce-record-downloa/jpjacljhnlilceoacphmpdomjogoghno |
Beschreibung | Tool to download Salesforce Record Data |
Dateigröße | 178 KB |
Installationsanzahl | 44 |
Aktuelle Version | 2.7 |
Letztes Update | 2016-09-06 |
Veröffentlichungsdatum | 2016-09-05 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | OSI Consulting |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |