Salesforce Collision Detection
Automatically forward save request to new edit page without losing changes on collision detection in salesforce.
什麼是Salesforce Collision Detection?
Salesforce Collision Detection是由https://indowwindows.com開發的Chrome擴展程式,該擴展的主要功能是“Automatically forward save request to new edit page without losing changes on collision detection in salesforce.”。
擴展截圖
下載Salesforce Collision Detection擴展crx文件
下載Salesforce Collision Detection擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
(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.
擴展基本資訊
名稱 | |
ID | amnlcmlmhjeomnoegohdnbhgdhnhboid |
官方網址 | https://chromewebstore.google.com/detail/salesforce-collision-dete/amnlcmlmhjeomnoegohdnbhgdhnhboid |
簡介 | Automatically forward save request to new edit page without losing changes on collision detection in salesforce. |
檔案大小 | 8.18 KB |
安裝次數 | 52 |
目前版本 | 0.0.0.3 |
更新時間 | 2018-02-08 |
上架時間 | 2018-02-07 |
開發者 | https://indowwindows.com |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" ] } |