FLS Comparator

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

Merlin
Additional files are visible only to premium users

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"
  ]
}