Salesforce Record Downloader
Tool to download Salesforce Record Data
什么是Salesforce Record Downloader?
Salesforce Record Downloader是由OSI Consulting开发的Chrome扩展程序,该扩展的主要功能是“Tool to download Salesforce Record Data”。
扩展截图
下载Salesforce Record Downloader扩展crx文件
下载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" ] } |