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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
(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" ] } |