Salesforce Collision Detection

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

Cos'è Salesforce Collision Detection?

Salesforce Collision Detection è un'estensione di Chrome sviluppata da https://indowwindows.com, e la sua funzione principale è "Automatically forward save request to new edit page without losing changes on collision detection in salesforce.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Salesforce Collision Detection

Scarica i file di estensione Salesforce Collision Detection in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Salesforce Collision Detection Salesforce Collision Detection
ID amnlcmlmhjeomnoegohdnbhgdhnhboid
URL Ufficiale https://chromewebstore.google.com/detail/salesforce-collision-dete/amnlcmlmhjeomnoegohdnbhgdhnhboid
Descrizione Automatically forward save request to new edit page without losing changes on collision detection in salesforce.
Dimensione del File 8.18 KB
Conteggio Installazioni 52
Versione Corrente 0.0.0.3
Ultimo Aggiornamento 2018-02-08
Data di Pubblicazione 2018-02-07
Sviluppatore https://indowwindows.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}