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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |