Salesforce Share

A browser extension that will allow sharing session-based Salesforce URLs for direct login.

Salesforce Shareคืออะไร?

Salesforce Share เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jasneet Dua และคุณลักษณะหลักของมันคือ "A browser extension that will allow sharing session-based Salesforce URLs for direct login."

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

screenshot
screenshot
screenshot

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

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

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

                        The Salesforce Share (chrome extension) is a tool designed to enhance the functionality of your org, a cloud-based customer relationship management platform. It works with both Lightning and Classic Experience and allows users to share session-based URLs, which provide a direct login to specific org records or pages. This helps streamline the process of accessing important information, eliminating the need to manually log in and navigate to the desired record or page.

This extension integrates seamlessly with the your org, providing an intuitive and user-friendly interface. With just a few clicks, users can generate and share a session-based URL, making it easier for others to access important information quickly and efficiently. The extension is designed to ensure the security of sensitive information, with robust security protocols and data encryption technology in place to protect user data.

This extension is an invaluable tool for users, providing a more efficient and streamlined way to share information and collaborate with others. Whether it's sharing information with colleagues, partners, or customers, the extension makes it easy to share session-based URLs, providing a direct and secure route to the desired information. Whether working remotely or in a traditional office setting, this extension is an essential tool for anyone using the Salesforce platform.

Whether collaborating with colleagues, partners, or customers, this extension remains indispensable. Share session-based URLs securely and efficiently, facilitating direct access to critical information. Whether working remotely or within a traditional office setup, this extension remains a must-have for anyone leveraging the Salesforce platform.

Additionally, we're excited to announce extended support for digital experience sites. Now, sharing session-based URLs isn't limited to internal records or pages; you can seamlessly share access to your digital experience site, promoting collaboration beyond organizational boundaries.

Now, not only can you effortlessly share session-based URLs for direct logins to specific org records or pages, but you can also capitalize on two new features.

The first addition is the ability to access your org directly from the extension's popup. No more navigation hassle; jump straight into your org with a simple click, saving precious time and effort.

Moreover, leveraging the power of REST APIs is easier than ever. You can now copy the access token directly from the extension, simplifying its usage in REST API explorers. This streamlines your workflow, allowing quick access to APIs for smoother interactions.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Salesforce Share Salesforce Share
ID koaaaaidkhaabciffhnpfoadehbenagj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/salesforce-share/koaaaaidkhaabciffhnpfoadehbenagj
คำอธิบาย A browser extension that will allow sharing session-based Salesforce URLs for direct login.
ขนาดไฟล์ 100 KB
จำนวนการติดตั้ง 130
เวอร์ชันปัจจุบัน 0.0.0.2
อัปเดตครั้งล่าสุด 2023-11-20
วันที่เผยแพร่ 2023-02-04
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Jasneet Dua
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/JasneetDua/salesforce-share/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Salesforce Share",
    "version": "0.0.0.2",
    "description": "A browser extension that will allow sharing session-based Salesforce URLs for direct login.",
    "author": "Jasneet Dua ([email protected])",
    "icons": {
        "16": ".\/images\/icons\/icon-16.png",
        "32": "images\/icons\/icon-32.png",
        "48": "images\/icons\/icon-48.png",
        "128": "images\/icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.force.com\/*",
                "https:\/\/*.site.com\/*"
            ],
            "js": [
                ".\/scripts\/content.js"
            ]
        }
    ],
    "action": {
        "default_icon": "images\/icons\/icon-16.png",
        "default_popup": "popup\/index.html",
        "default_title": "Salesforce Share - Generate Session URL"
    },
    "permissions": [
        "tabs",
        "cookies"
    ],
    "host_permissions": [
        "https:\/\/*.salesforce.com\/",
        "https:\/\/*.force.com\/",
        "https:\/\/*.site.com\/"
    ]
}