Examine source code of WISHUPON - A Shopping Wishlist Clipper

Inspect and view changes in WISHUPON - A Shopping Wishlist Clipper 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",
  "name": "WISHUPON - A Shopping Wishlist Clipper",
  "description": "__MSG_extDescription__",
  "manifest_version": 3,
  "version": "0.2.0",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "host_permissions": [
    "https://www.gstatic.com/",
    "https://*.firebaseio.com/",
    "https://www.googleapis.com/",
    "https://apis.google.com/",
    "https://www.googletagmanager.com/"
  ],
  "default_locale": "en",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}