Salesforce Record Downloader
Tool to download Salesforce Record Data
Apa itu Salesforce Record Downloader?
Salesforce Record Downloader adalah ekstensi Chrome yang dikembangkan oleh OSI Consulting, dan fitur utamanya adalah "Tool to download Salesforce Record Data".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Salesforce Record Downloader
Unduh file ekstensi Salesforce Record Downloader dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Salesforce Record Downloader |
ID | jpjacljhnlilceoacphmpdomjogoghno |
URL Resmi | https://chromewebstore.google.com/detail/salesforce-record-downloa/jpjacljhnlilceoacphmpdomjogoghno |
Deskripsi | Tool to download Salesforce Record Data |
Ukuran File | 178 KB |
Jumlah Instalasi | 44 |
Versi Saat Ini | 2.7 |
Terakhir Diperbarui | 2016-09-06 |
Tanggal Publikasi | 2016-09-05 |
Penilaian | 5.00/5 Total 3 Penilaian |
Pengembang | OSI Consulting |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |