Salesforce Collision Detection
Automatically forward save request to new edit page without losing changes on collision detection in salesforce.
Hvad er Salesforce Collision Detection?
Salesforce Collision Detection er en Chrome-udvidelse udviklet af https://indowwindows.com, og dens hovedfunktion er "Automatically forward save request to new edit page without losing changes on collision detection in salesforce.".
Udvidelsesskærmbilleder
Download Salesforce Collision Detection-udvidelses-CRX-fil
Download Salesforce Collision Detection-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
(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.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | amnlcmlmhjeomnoegohdnbhgdhnhboid |
Officiel URL | https://chromewebstore.google.com/detail/salesforce-collision-dete/amnlcmlmhjeomnoegohdnbhgdhnhboid |
Beskrivelse | Automatically forward save request to new edit page without losing changes on collision detection in salesforce. |
Filstørrelse | 8.18 KB |
Antal Installationer | 52 |
Nuværende Version | 0.0.0.3 |
Senest Opdateret | 2018-02-08 |
Udgivelsesdato | 2018-02-07 |
Udvikler | https://indowwindows.com |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |