My Ad Blocker

My Ad Blocker

My Ad Blocker helps you to automatically block advertisements.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "My Ad Blocker",
  "version": "0.1.0",
  "description": "My Ad Blocker helps you to automatically block advertisements.",
  "icons": {
    "64": "icon64.png",
    "128": "icon128.png",
    "256": "icon256.png"
  },
  "author": "Yifan Ai",
  "background": {
    "scripts": [
      "index.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "homepage_url": "https://www.yifanai.com/"
}