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

Apa itu FLS Comparator?

FLS Comparator adalah ekstensi Chrome yang dikembangkan oleh Abhinav Swaroop Saxena, dan fitur utamanya adalah "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 Ekstensi

screenshot

Unduh Berkas CRX Ekstensi FLS Comparator

Unduh file ekstensi FLS Comparator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama FLS Comparator FLS Comparator
ID miafgahohjddkeaikpngkcnmakidagoe
URL Resmi https://chromewebstore.google.com/detail/fls-comparator/miafgahohjddkeaikpngkcnmakidagoe
Deskripsi FLS Comparator - Automation to compare Field Level Security to a different field or to a new field in the same or different SFDC Org
Ukuran File 13.21 KB
Jumlah Instalasi 648
Versi Saat Ini 1.0.2
Terakhir Diperbarui 2022-09-11
Tanggal Publikasi 2017-10-16
Penilaian 4.94/5 Total 31 Penilaian
Pengembang Abhinav Swaroop Saxena
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}