Salesforce Collision Detection
Automatically forward save request to new edit page without losing changes on collision detection in salesforce.
O que é Salesforce Collision Detection?
Salesforce Collision Detection é uma extensão do Chrome desenvolvida por https://indowwindows.com, e sua principal característica é "Automatically forward save request to new edit page without losing changes on collision detection in salesforce.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Salesforce Collision Detection
Baixe arquivos de extensão Salesforce Collision Detection no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
(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.
Informações Básicas da Extensão
Nome | |
ID | amnlcmlmhjeomnoegohdnbhgdhnhboid |
URL Oficial | https://chromewebstore.google.com/detail/salesforce-collision-dete/amnlcmlmhjeomnoegohdnbhgdhnhboid |
Descrição | Automatically forward save request to new edit page without losing changes on collision detection in salesforce. |
Tamanho do Arquivo | 8.18 KB |
Contagem de Instalações | 52 |
Versão Atual | 0.0.0.3 |
Última Atualização | 2018-02-08 |
Data de Publicação | 2018-02-07 |
Desenvolvedor | https://indowwindows.com |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |