Malwarebytes Browser Guard

Malwarebytes Browser Guard

The fastest and safest web browsing experience.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "author": "Malwarebytes",
  "name": "Malwarebytes Browser Guard",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "2.6.24",
  "icons": {
    "128": "app/assets/icon.png"
  },
  "web_accessible_resources": [
    "*.eot",
    "*.ttf",
    "*.woff",
    "*.woff2",
    "app/assets/close-icon.svg",
    "app/assets/tooltip.svg",
    "app/eventpages/block.html",
    "app/eventpages/debugger.html",
    "app/eventpages/downloading.html",
    "app/eventpages/block-notification.html",
    "app/eventpages/block-notification.css",
    "app/eventpages/block-notification-dark.css",
    "app/eventpages/clipboard-notification.html",
    "app/eventpages/clipboard-notification.css",
    "app/eventpages/clipboard-notification-dark.css",
    "app/eventpages/monthly-notification.html",
    "app/eventpages/monthly-notification.css",
    "app/eventpages/monthly-notification-dark.css",
    "injection-instart.js",
    "injection-tss.js",
    "injection-tss-notification.js",
    "injection-topics.js",
    "injection-tss-skimmer.js",
    "vendor/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.msn.com/*"
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.malwarebytes.com/browserguard/*"
      ],
      "js": [
        "content-debugging.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "browser_action": {
    "default_icon": "app/assets/icon.png",
    "default_popup": "app/pop.html",
    "default_title": "Malwarebytes"
  },
  "permissions": [
    "alarms",
    "downloads",
    "storage",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "unlimitedStorage",
    "nativeMessaging",
    "<all_urls>",
    "contextMenus"
  ],
  "incognito": "split"
}