Salesforce Collision Detection

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

Was ist Salesforce Collision Detection?

Salesforce Collision Detection ist eine Chrome-Erweiterung, die von https://indowwindows.com entwickelt wurde, und ihr Hauptmerkmal ist "Automatically forward save request to new edit page without losing changes on collision detection in salesforce.".

Erweiterungsscreenshots

screenshot

Salesforce Collision Detection-Erweiterungs-CRX-Datei herunterladen

Laden Sie Salesforce Collision Detection-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Salesforce Collision Detection Salesforce Collision Detection
ID amnlcmlmhjeomnoegohdnbhgdhnhboid
Offizielle URL https://chromewebstore.google.com/detail/salesforce-collision-dete/amnlcmlmhjeomnoegohdnbhgdhnhboid
Beschreibung Automatically forward save request to new edit page without losing changes on collision detection in salesforce.
Dateigröße 8.18 KB
Installationsanzahl 52
Aktuelle Version 0.0.0.3
Letztes Update 2018-02-08
Veröffentlichungsdatum 2018-02-07
Entwickler https://indowwindows.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}