Examine source code of Demodal - Block modals and overlays

Inspect and view changes in Demodal - Block modals and overlays 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
{
  "name": "Demodal - Block modals and overlays",
  "description": "Demodal automatically removes content blocking modals including paywalls, discount offers, email address prompts and more.",
  "version": "1.0.3",
  "manifest_version": 3,
  "default_locale": "en",
  "background": {
    "service_worker": "background/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "common/common.js",
        "content/content.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "action": {
    "default_popup": "popup/popup.html",
    "default_icon": {
      "128": "images/icon-128.png",
      "256": "images/icon-256.png"
    }
  },
  "options_page": "options/options.html",
  "icons": {
    "128": "images/icon-128.png",
    "256": "images/icon-256.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}