Salesforce Collision Detection
Automatically forward save request to new edit page without losing changes on collision detection in salesforce.
Qu'est-ce que Salesforce Collision Detection ?
Salesforce Collision Detection est une extension Chrome développée par https://indowwindows.com, et sa fonction principale est "Automatically forward save request to new edit page without losing changes on collision detection in salesforce.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Salesforce Collision Detection
Téléchargez les fichiers d'extension Salesforce Collision Detection au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
(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.
Informations de Base sur l'Extension
Nom | |
ID | amnlcmlmhjeomnoegohdnbhgdhnhboid |
URL Officiel | https://chromewebstore.google.com/detail/salesforce-collision-dete/amnlcmlmhjeomnoegohdnbhgdhnhboid |
Description | Automatically forward save request to new edit page without losing changes on collision detection in salesforce. |
Taille du Fichier | 8.18 KB |
Nombre d'Installations | 52 |
Version Actuelle | 0.0.0.3 |
Dernière Mise à Jour | 2018-02-08 |
Date de Publication | 2018-02-07 |
Développeur | https://indowwindows.com |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |