Ad Blocker by CSS selector

Ad Blocker by CSS selector

Provides you to hide tricky DOM elements.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "background": {
    "page": "bg.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "name": "Ad Blocker by CSS selector",
  "description": "Provides you to hide tricky DOM elements.",
  "version": "1.0",
  "browser_action": {
    "default_icon": "img/32.png"
  },
  "icons": {
    "32": "img/32.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "settings.html"
  },
  "permissions": [
    "storage"
  ]
}