Examine source code of Don't care about cookies

Inspect and view changes in Don't care about cookies 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://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
  "manifest_version": 2,
  "name": "Don't care about cookies",
  "description": "Remove cookie warnings from all websites. Without ads and extra permissions",
  "short_name": "stop warnings",
  "default_locale": "en",
  "version": "1.2.0",
  "icons": {
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*",
    "webRequest",
    "webRequestBlocking",
    "webNavigation"
  ],
  "background": {
    "scripts": [
      "data/b.js"
    ]
  },
  "options_ui": {
    "page": "data/whitelist.html"
  },
  "browser_action": {
    "default_popup": "data/menu/index.html",
    "default_icon": "icons/32.png"
  }
}