ATO Blocker

ATO Blocker

A super minimal blocker of ads, trackers and annoyances which works out of the box

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ATO Blocker",
  "description": "A super minimal blocker of ads, trackers and annoyances which works out of the box",
  "manifest_version": 2,
  "version": "1.0.11",
  "homepage_url": "https://github.com/remusao/blockrz",
  "author": "remusao",
  "icons": {
    "48": "icons/icon-o-0.png",
    "128": "icons/icon-o-0.png",
    "256": "icons/icon-o-0.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "tabs",
    "<all_urls>",
    "storage",
    "unlimitedStorage"
  ],
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "browser_action": {
    "default_title": "ΛΤΟ Blocker"
  },
  "content_scripts": [
    {
      "match_about_blank": true,
      "all_frames": true,
      "js": [
        "content-script.bundle.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ]
}