FLS Comparator

FLS Comparator - Automation to compare Field Level Security to a different field or to a new field in the same or different SFDC Org

FLS Comparator란 무엇입니까?

FLS Comparator은(는) Abhinav Swaroop Saxena에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "FLS Comparator - Automation to compare Field Level Security to a different field or to a new field in the same or different SFDC Org"입니다.

확장 프로그램 스크린샷

screenshot

FLS Comparator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        SFDC FLS Compare Tool is a 'Google Chrome' extension built with Javascript which can eliminate human effort in comparing, mapping Field Level Security to a different field or to a new field in the same or different Org.

As a Salesforce developer we do come across ‘Field Level Security’ which needs to be copied to a different field inside the same or different Salesforce org in this case, doing this comparison manually is time consuming and can result in errors. Both time and errors can be overcome by using this tool.                    

확장 프로그램 기본 정보

이름 FLS Comparator FLS Comparator
ID miafgahohjddkeaikpngkcnmakidagoe
공식 URL https://chromewebstore.google.com/detail/fls-comparator/miafgahohjddkeaikpngkcnmakidagoe
설명 FLS Comparator - Automation to compare Field Level Security to a different field or to a new field in the same or different SFDC Org
파일 크기 13.21 KB
설치 횟수 648
현재 버전 1.0.2
최근 업데이트 2022-09-11
출시 날짜 2017-10-16
평점 4.94/5 총 31 개의 평점
개발자 Abhinav Swaroop Saxena
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Abhinav Swaroop Saxena",
    "name": "FLS Comparator",
    "version": "1.0.2",
    "manifest_version": 3,
    "description": "FLS Comparator - Automation to compare Field Level Security to a different field or to a new field in the same or different SFDC Org",
    "icons": {
        "48": "img\/icon128_comparefls.png",
        "128": "img\/icon128_comparefls.png"
    },
    "action": {
        "default_icon": "img\/icon128_comparefls.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/_ui\/common\/config\/field\/StandardFieldAttributes\/e*"
            ],
            "js": [
                "js\/localScript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "unlimitedStorage",
        "storage"
    ]
}