Examine source code of superagent - Automatic cookie consent

Inspect and view changes in superagent - Automatic cookie consent 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
{
  "manifest_version": 3,
  "name": "superagent - Automatic cookie consent",
  "version": "3.9",
  "description": "superagent fills out cookie consent forms based on your preferences, saving you time and letting you take control of your privacy.",
  "permissions": [
    "storage",
    "theme",
    "tabs",
    "cookies",
    "activeTab"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "service_worker": "static/js/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "static/js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "match_about_blank": true
    }
  ],
  "icons": {
    "32": "images/logo/32.png",
    "64": "images/logo/64.png",
    "128": "images/logo/128.png",
    "256": "images/logo/256.png",
    "512": "images/logo/512.png",
    "1024": "images/logo/1024.png"
  },
  "action": {
    "default_title": "superagent",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}