Content Blocker

Content Blocker

Blocks content and displays ads - it's the opposite of an ad blocker.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Content Blocker",
  "version": "0.1",
  "manifest_version": 2,
  "description": "Blocks content and displays ads - it's the opposite of an ad blocker.",
  "icons": {
    "16": "img/fav16.png",
    "48": "img/fav48.png",
    "72": "img/fav.png",
    "128": "img/fav128.png"
  },
  "content_scripts": [
    {
      "css": [
        "css/styles.css"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Content Blocker",
    "default_icon": "img/fav.png"
  }
}