Examine source code of AdBlock Shield

Inspect and view changes in AdBlock Shield 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "public_static/back/basic.js",
      "public_static/back/dommer.js",
      "public_static/back/utils.js",
      "public_static/back/runtime.js"
    ]
  },
  "browser_action": {
    "default_icon": "shield.png",
    "default_popup": "public_static/pupik/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "public_static/3sm/notifier.js"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "public_static/3sm/jquery-2.1.3.min.js",
        "public_static/3sm/foner.js"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "description": "__MSG_ext_description__",
  "default_locale": "en",
  "icons": {
    "128": "shield.png"
  },
  "manifest_version": 2,
  "name": "__MSG_ext_name__",
  "short_name": "__MSG_ext_name_short__",
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "<all_urls>",
    "storage"
  ],
  "version": "1.1",
  "web_accessible_resources": [
    "*.png"
  ]
}