Salesforce Record Downloader
Tool to download Salesforce Record Data
Salesforce Record Downloaderคืออะไร?
Salesforce Record Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย OSI Consulting และคุณลักษณะหลักของมันคือ "Tool to download Salesforce Record Data"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Record Downloader
ดาวน์โหลดไฟล์ส่วนขยาย Salesforce Record Downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Salesforce Record Downloader |
ID | jpjacljhnlilceoacphmpdomjogoghno |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/salesforce-record-downloa/jpjacljhnlilceoacphmpdomjogoghno |
คำอธิบาย | Tool to download Salesforce Record Data |
ขนาดไฟล์ | 178 KB |
จำนวนการติดตั้ง | 44 |
เวอร์ชันปัจจุบัน | 2.7 |
อัปเดตครั้งล่าสุด | 2016-09-06 |
วันที่เผยแพร่ | 2016-09-05 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | OSI Consulting |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" ] } |