Bye Bye Ads

Bye Bye Ads

Install the Bye Bye Ads browser extension and enjoy an ad-free, faster browsing experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": {
      "16": "img/icon_16.png",
      "32": "img/icon_32.png"
    },
    "default_popup": "popup-fenix.html",
    "default_title": "Bye Bye Ads"
  },
  "commands": {
    "launch-element-picker": {
      "description": "__MSG_popupTipPicker__"
    },
    "launch-element-zapper": {
      "description": "__MSG_popupTipZapper__"
    },
    "open-dashboard": {
      "description": "__MSG_popupTipDashboard__"
    },
    "relax-blocking-mode": {
      "description": "__MSG_relaxBlockingMode__"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "/js/vapi.js",
        "/js/vapi-client.js",
        "/js/contentscript.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "/js/vapi.js",
        "/js/vapi-client.js",
        "/js/customContentScript.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*.byebyeads.org/*",
        "http://byebyeads.org/*",
        "https://*.byebyeads.org/*",
        "https://byebyeads.org/*"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "default_locale": "en",
  "description": "Install the Bye Bye Ads browser extension and enjoy an ad-free, faster browsing experience.",
  "icons": {
    "16": "img/icon_16.png",
    "32": "img/icon_32.png",
    "64": "img/icon_64.png",
    "128": "img/icon_128.png"
  },
  "incognito": "split",
  "manifest_version": 2,
  "minimum_chrome_version": "55.0",
  "name": "Bye Bye Ads",
  "permissions": [
    "contextMenus",
    "storage",
    "notifications",
    "tabs",
    "cookies",
    "unlimitedStorage",
    "webNavigation",
    "webRequest",
    "idle",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "short_name": "Bye Bye Ads",
  "storage": {
    "managed_schema": "managed_storage.json"
  },
  "version": "1.0.0.32",
  "web_accessible_resources": [
    "/web_accessible_resources/*"
  ]
}