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
Eメール [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"
    ]
}