Broxme AdBlocker

Broxme AdBlocker

Unmatched adblock extension against advertising and pop-ups. Blocks ads on Facebook, YouTube and all other websites.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Broxme AdBlocker",
  "short_name": "__MSG_short_name__",
  "author": "BroxMe Technology",
  "version": "1.0.0",
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "16": "icons/green-16.png",
    "128": "icons/green-128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "icons/green-19.png",
      "38": "icons/green-38.png"
    },
    "default_title": "__MSG_name__",
    "default_popup": "pages/popup.html"
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "lib/utils/element-collapser.js",
        "lib/utils/css-hits-counter.js",
        "lib/libs/extended-css.js",
        "lib/content-script/adguard-content.js",
        "lib/content-script/common-script.js",
        "lib/content-script/content-script.js",
        "lib/content-script/wrappers.js",
        "lib/content-script/preload.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "match_about_blank": true,
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "css": [
        "lib/content-script/css/alert-popup.css"
      ],
      "js": [
        "lib/content-script/content-utils.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "match_about_blank": true,
      "run_at": "document_start"
    },
    {
      "all_frames": false,
      "js": [
        "lib/content-script/i18n-helper.js",
        "lib/content-script/assistant/js/start-assistant.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    },
    {
      "all_frames": false,
      "js": [
        "lib/pages/thankyou.js"
      ],
      "matches": [
        "*://*.broxme.com/*/thankyou*"
      ],
      "run_at": "document_start"
    }
  ],
  "minimum_edge_version": "40.15063.0.0",
  "options_page": "pages/options.html",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "storage",
    "unlimitedStorage",
    "contextMenus",
    "cookies"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}