Profile Permissionset

Profile Permissionset

Displays profile or permissionset details for the selected object or field

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "2.0.0.1",
  "name": "Profile Permissionset",
  "short_name": "Security Settings",
  "description": "Displays profile or permissionset details for the selected object or field",
  "author": {
    "name": "Suresh Ponnuvelu"
  },
  "icons": {
    "16": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "storage",
    "cookies",
    "https://*.salesforce.com/*",
    "https://*.force.com/*"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "js/constants.js",
      "js/utils.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_title": "Profile Permissionset"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/constants.js",
        "js/utils.js",
        "js/content.js"
      ],
      "matches": [
        "https://*.force.com/*",
        "https://*.salesforce.com/*"
      ]
    }
  ]
}