Adbust

Adbust

Blocks all annoying ads, and supports websites by not blocking unobtrusive ads by default

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Adbust",
  "description": "Blocks all annoying ads, and supports websites by not blocking unobtrusive ads by default",
  "version": "2.0",
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "adblock16.png",
    "48": "adblock48.png",
    "128": "adblock128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "myscript.js"
      ],
      "run_at": "document_end"
    }
  ]
}