Examine source code of === AD STOP ===

Inspect and view changes in === AD STOP === source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "background": {
    "persistent": true,
    "scripts": [
      "ext/polyfill.js",
      "ext/common.js",
      "ext/background.js",
      "lib/compat.js",
      "lib/publicSuffixList.js",
      "lib/easyadblock.js",
      "ext/bgFilter.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Ad Stop"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "ext/polyfill.js",
        "ext/common.js",
        "ext/content.js",
        "ext/include.preload.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "ext/include.postload.js",
        "ext/csLoadlib.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "icons": {
    "128": "icons/detailed/adk-128.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
  "manifest_version": 2,
  "minimum_chrome_version": "49.0",
  "name": "__MSG_appName__",
  "permissions": [
    "tabs",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "storage",
    "unlimitedStorage"
  ],
  "storage": {
    "managed_schema": "ext/storage-schema.json"
  },
  "version": "1.0.1",
  "web_accessible_resources": [
    "skin/background.png"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}