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

Cos'è FLS Comparator?

FLS Comparator è un'estensione di Chrome sviluppata da Abhinav Swaroop Saxena, e la sua funzione principale è "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 dell'Estensione

screenshot

Scarica il file CRX dell'estensione FLS Comparator

Scarica i file di estensione FLS Comparator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome FLS Comparator FLS Comparator
ID miafgahohjddkeaikpngkcnmakidagoe
URL Ufficiale https://chromewebstore.google.com/detail/fls-comparator/miafgahohjddkeaikpngkcnmakidagoe
Descrizione FLS Comparator - Automation to compare Field Level Security to a different field or to a new field in the same or different SFDC Org
Dimensione del File 13.21 KB
Conteggio Installazioni 648
Versione Corrente 1.0.2
Ultimo Aggiornamento 2022-09-11
Data di Pubblicazione 2017-10-16
Valutazione 4.94/5 Totale 31 Valutazioni
Sviluppatore Abhinav Swaroop Saxena
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}