Salesforce Record Downloader
Tool to download Salesforce Record Data
Wat is Salesforce Record Downloader?
Salesforce Record Downloader is een Chrome-extensie ontwikkeld door OSI Consulting, en de belangrijkste functie is "Tool to download Salesforce Record Data".
Extensie Screenshots
Download het CRX-bestand van de extensie Salesforce Record Downloader
Download Salesforce Record Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Salesforce Record Downloader |
ID | jpjacljhnlilceoacphmpdomjogoghno |
Officiële URL | https://chromewebstore.google.com/detail/salesforce-record-downloa/jpjacljhnlilceoacphmpdomjogoghno |
Beschrijving | Tool to download Salesforce Record Data |
Bestandsgrootte | 178 KB |
Aantal Installaties | 44 |
Huidige Versie | 2.7 |
Laatst Bijgewerkt | 2016-09-06 |
Publicatiedatum | 2016-09-05 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | OSI Consulting |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |