Salesforce Security

Salesforce Security

Protect your SalesForce data and credentials from malicious Chrome Extensions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_title__",
  "short_name": "__MSG_shortname__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "0.1.21",
  "permissions": [
    "management",
    "tabs"
  ],
  "commands": {
    "enable-disable-active-extensions": {
      "suggested_key": {
        "default": "Ctrl+Shift+2"
      },
      "description": "Enable and disable active extensions"
    }
  },
  "browser_action": {
    "default_icon": {
      "16": "images/icon16.png",
      "19": "images/icon19.png",
      "38": "images/icon38.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/ExtensionPolice16.png",
    "48": "images/ExtensionPolice48.png",
    "128": "images/ExtensionPolice128.png"
  },
  "offline_enabled": true,
  "background": {
    "persistent": true,
    "scripts": [
      "bg.js"
    ]
  },
  "web_accessible_resources": [
    "scripts/*.js",
    "images/*.png",
    "images/*.svg",
    "css/*.css"
  ]
}