Salesforce Instance Flag

Salesforce Instance Flag

Creates a banner at the top of the page to flag what instance you are currently in. **NEW** You now have the ability to set your…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "4.2",
  "name": "Salesforce Instance Flag",
  "background": {
    "scripts": [
      "runFlagging.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "connection.js"
      ],
      "matches": [
        "*://*.salesforce.com/",
        "*://*.force.com/"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "http://*/",
    "https://*/"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}