Examine source code of Remove Cookie Banners

Inspect and view changes in Remove Cookie Banners 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": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' https://www.googletagmanager.com https://www.google-analytics.com https://ssl.google-analytics.com; object-src 'self'",
  "description": "Get rid of annoying cookie notification banners on websites.",
  "icons": {
    "16": "cookie-16.png",
    "32": "cookie-32.png",
    "48": "cookie-48.png",
    "64": "cookie-64.png",
    "128": "cookie-128.png"
  },
  "manifest_version": 2,
  "name": "Remove Cookie Banners",
  "permissions": [
    "<all_urls>",
    "storage",
    "notifications",
    "cookies",
    "tabs",
    "activeTab",
    "http://*/*",
    "https://*/*",
    "webNavigation",
    "webRequest",
    "webRequestBlocking"
  ],
  "version": "1.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}