SUPR - Salesforce User Permission Report

SUPR - Salesforce User Permission Report

Salesforce User Permission Report allows you to see a report of all the permissions a user has and where they are set.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "SUPR - Salesforce User Permission Report",
  "short_name": "SUPR",
  "description": "Salesforce User Permission Report allows you to see a report of all the permissions a user has and where they are set.",
  "version": "1.2.4",
  "author": "Aurel Hudec",
  "homepage_url": "https://github.com/hudec117/sf-user-perm-report",
  "update_URL": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "incognito": "split",
  "minimum_chrome_version": "88",
  "manifest_version": 3,
  "icons": {
    "16": "icons/16-icon.png",
    "32": "icons/32-icon.png",
    "48": "icons/48-icon.png",
    "128": "icons/128-icon.png"
  },
  "permissions": [
    "cookies"
  ],
  "host_permissions": [
    "https://*.my.salesforce.com/"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.my.salesforce.com/*"
      ],
      "all_frames": true,
      "js": [
        "content-script.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}