Ad blocker

Ad blocker

Removes the 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": "Ad blocker",
  "description": "Removes the ads",
  "version": "1.0.2",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "incognito": "split",
  "browser_action": {
    "default_icon": "on.png",
    "default_title": "Remove the Ads"
  },
  "background": {
    "scripts": [
      "bm.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "pm.js"
      ]
    }
  ]
}