Salesforce Collision Detection

Automatically forward save request to new edit page without losing changes on collision detection in salesforce.

Salesforce Collision Detection là gì?

Salesforce Collision Detection là một tiện ích mở rộng Chrome được phát triển bởi https://indowwindows.com, và tính năng chính của nó là "Automatically forward save request to new edit page without losing changes on collision detection in salesforce.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Salesforce Collision Detection

Tải xuống các tệp mở rộng Salesforce Collision Detection dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        (Classic only, does not currently work with the lightning interface.)

A quick usability workaround for those frustrated by Salesforce's inline edit collision detection error: "The record you were editing was modified by {username} during your edit session."

This extension automatically captures the intended save request, and simply forwards it to an edit page to avoid any lost data or annoying, unnecessary copying and pasting of information. Yay!

Note: Any conflicting changes across any fields that both you and the background user/ process have made will always be overwritten by your changes.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Salesforce Collision Detection Salesforce Collision Detection
ID amnlcmlmhjeomnoegohdnbhgdhnhboid
URL Chính Thức https://chromewebstore.google.com/detail/salesforce-collision-dete/amnlcmlmhjeomnoegohdnbhgdhnhboid
Mô tả Automatically forward save request to new edit page without losing changes on collision detection in salesforce.
Kích Thước Tệp 8.18 KB
Số Lần Cài Đặt 52
Phiên Bản Hiện Tại 0.0.0.3
Cập Nhật Lần Cuối 2018-02-08
Ngày Phát Hành 2018-02-07
Nhà Phát Triển https://indowwindows.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Salesforce Collision Detection",
    "description": "Automatically forward save request to new edit page without losing changes on collision detection in salesforce.",
    "version": "0.0.0.3",
    "icons": {
        "48": "icon48.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}