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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://indowwindows.com และคุณลักษณะหลักของมันคือ "Automatically forward save request to new edit page without losing changes on collision detection in salesforce."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Collision Detection
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
| URL อย่างเป็นทางการ | 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"
]
} | |