clearAD

clearAD

It can easily block ads and other designated areas

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "clearAD",
  "description": "It can easily block ads and other designated areas",
  "version": "1.0.3",
  "browser_action": {
    "default_icon": "imgs/icon.png",
    "default_popup": "html/popup/shadow.html",
    "default_title": "It can easily block ads and other designated areas"
  },
  "icons": {
    "128": "imgs/icon.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "webRequestBlocking"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "js/backgroundJs/bg.js"
    ]
  },
  "web_accessible_resources": [
    "js/webJs/inject.js",
    "js/commonJs/jquery.js"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/index.css"
      ],
      "run_at": "document_end",
      "js": [
        "js/commonJs/jquery.js",
        "js/contentscriptsJs/classView.js",
        "js/contentscriptsJs/classShadow.js",
        "js/contentscriptsJs/classMouse.js",
        "js/contentscriptsJs/classMenu.js",
        "js/contentscriptsJs/classData.js",
        "js/contentscriptsJs/initNeed.js",
        "js/contentscriptsJs/recvMessage.js"
      ]
    }
  ]
}