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

¿Qué es FLS Comparator?

FLS Comparator es una extensión de Chrome desarrollada por Abhinav Swaroop Saxena, y su función principal es "FLS Comparator - Automation to compare Field Level Security to a different field or to a new field in the same or different SFDC Org".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión FLS Comparator

Descarga archivos de extensión FLS Comparator en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre FLS Comparator FLS Comparator
ID miafgahohjddkeaikpngkcnmakidagoe
URL Oficial https://chromewebstore.google.com/detail/fls-comparator/miafgahohjddkeaikpngkcnmakidagoe
Descripción FLS Comparator - Automation to compare Field Level Security to a different field or to a new field in the same or different SFDC Org
Tamaño del Archivo 13.21 KB
Cantidad de Instalaciones 648
Versión Actual 1.0.2
Última Actualización 2022-09-11
Fecha de Publicación 2017-10-16
Calificación 4.94/5 Total de 31 Calificaciones
Desarrollador Abhinav Swaroop Saxena
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    ]
}