Examine source code of Add To WishTender

Inspect and view changes in Add To WishTender 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",
  "manifest_version": 3,
  "version": "1.7",
  "name": "Add To WishTender",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab"
  ],
  "action": {
    "default_icon": "icon_128.png",
    "default_popup": "popup.html",
    "default_title": "WishTender"
  },
  "icons": {
    "32": "icon_32.png",
    "128": "icon_128.png",
    "301": "icon_301.png"
  }
}