Share Salesforce Record (Email)
This plugin will get complete record data and send it via mail to anyone
Share Salesforce Record (Email)란 무엇입니까?
Share Salesforce Record (Email)은(는) Kaushik Ray에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This plugin will get complete record data and send it via mail to anyone"입니다.
확장 프로그램 스크린샷
Share Salesforce Record (Email) 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Complete github repo - https://github.com/KaushikRay/Chrome-ShareSFRecord For enhancements and issues log same in repo. Thanks for your corporation. This plugin is used to share any record details to anyone through email. No need for the second user to have SF license. Want to share data of a record from detail page quickly? Just hit share button and plugin will get all the non null fields data and form a mail ready to be sent. NOTE - Limitations - 1. This plugin uses mailto: functionality to send email or call out the default app. Please check your default protocol settings or Handler settings under "chrome://settings/handlers" for proper opening of mail tab with details. 2. mailto opens a new url on new tab and there is a limitation around number of characters in url, so right now plugin supports data till 2000 characters which is generally more than sufficient for most records. Future - 1. Data share through hosted link 2. Downloadable file with data Please leave a message on what new features you may want more as future release features. Help in Idea - Swapnil Shrikhande
확장 프로그램 기본 정보
이름 | Share Salesforce Record (Email) |
ID | egljdkpehcjkjmfeckhdjeogdjibnpim |
공식 URL | https://chromewebstore.google.com/detail/share-salesforce-record-e/egljdkpehcjkjmfeckhdjeogdjibnpim |
설명 | This plugin will get complete record data and send it via mail to anyone |
파일 크기 | 55.13 KB |
설치 횟수 | 30 |
현재 버전 | 1.3 |
최근 업데이트 | 2016-03-12 |
출시 날짜 | 2016-03-12 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | Kaushik Ray |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Share Salesforce Record (Email)", "description": "This plugin will get complete record data and send it via mail to anyone", "version": "1.3", "page_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.salesforce.com\/*" ], "js": [ "jquery-1.12.1.min.js", "forcetk.js", "contentscript.js" ] } ], "permissions": [ "cookies", "tabs", "*:\/\/*.salesforce.com\/*" ], "background": { "page": "background.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |