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

Was ist FLS Comparator?

FLS Comparator ist eine Chrome-Erweiterung, die von Abhinav Swaroop Saxena entwickelt wurde, und ihr Hauptmerkmal ist "FLS Comparator - Automation to compare Field Level Security to a different field or to a new field in the same or different SFDC Org".

Erweiterungsscreenshots

screenshot

FLS Comparator-Erweiterungs-CRX-Datei herunterladen

Laden Sie FLS Comparator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name FLS Comparator FLS Comparator
ID miafgahohjddkeaikpngkcnmakidagoe
Offizielle URL https://chromewebstore.google.com/detail/fls-comparator/miafgahohjddkeaikpngkcnmakidagoe
Beschreibung FLS Comparator - Automation to compare Field Level Security to a different field or to a new field in the same or different SFDC Org
Dateigröße 13.21 KB
Installationsanzahl 648
Aktuelle Version 1.0.2
Letztes Update 2022-09-11
Veröffentlichungsdatum 2017-10-16
Bewertung 4.94/5 Insgesamt 31 Bewertungen
Entwickler Abhinav Swaroop Saxena
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}