WAB - Wise Ads Block

WAB - Wise Ads Block

Removes annoying ads

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_title__",
  "short_name": "WAB",
  "description": "__MSG_app_description__",
  "version": "5.8",
  "default_locale": "en",
  "author": "Lart <[email protected]>",
  "background": {
    "scripts": [
      "libs/jquery-2.0.3.min.js",
      "libs/functions.js",
      "libs/elementTypes.js",
      "libs/core.js",
      "libs/stats.js",
      "background.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' https://wab.lart.com.ua https://wab.oweb.loc; object-src 'self'",
  "web_accessible_resources": [
    "libs/jquery-2.0.3.min.js",
    "libs/html_checker.js"
  ],
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "libs/jquery-2.0.3.min.js",
        "libs/functions.js",
        "libs/html_checker.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "pages/popup.html"
  },
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "http://*/*",
    "https://*/*"
  ]
}