LEX Ad Blocker

LEX Ad Blocker

Blocks banner and modal advertisements to switch to a different user experience when using Salesforce.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LEX Ad Blocker",
  "version": "0.2",
  "description": "Blocks banner and modal advertisements to switch to a different user experience when using Salesforce.",
  "manifest_version": 2,
  "browser_action": {
    "persistent": true
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.force.com/*",
        "https://*.salesforce.com/*",
        "https://*.chrome.com/*"
      ],
      "js": [
        "scripts/content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}