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) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kaushik Ray และคุณลักษณะหลักของมันคือ "This plugin will get complete record data and send it via mail to anyone"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Share Salesforce Record (Email)

ดาวน์โหลดไฟล์ส่วนขยาย Share Salesforce Record (Email) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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) 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"
    }
}