Salesforce Collision Detection

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

什么是Salesforce Collision Detection?

Salesforce Collision Detection是由https://indowwindows.com开发的Chrome扩展程序,该扩展的主要功能是“Automatically forward save request to new edit page without losing changes on collision detection in salesforce.”。

扩展截图

screenshot

下载Salesforce Collision Detection扩展crx文件

下载Salesforce Collision Detection扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        (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.                    

扩展基本信息

名称 Salesforce Collision Detection Salesforce Collision Detection
ID amnlcmlmhjeomnoegohdnbhgdhnhboid
官方URL https://chromewebstore.google.com/detail/salesforce-collision-dete/amnlcmlmhjeomnoegohdnbhgdhnhboid
简介 Automatically forward save request to new edit page without losing changes on collision detection in salesforce.
文件大小 8.18 KB
安装次数 52
当前版本 0.0.0.3
更新时间 2018-02-08
上架时间 2018-02-07
开发者 https://indowwindows.com
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    ]
}