My WishList

My WishList

Save and watch all your wanted products in one extension!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "My WishList",
  "description": "Save and watch all your wanted products in one extension!",
  "version": "1.0.0.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "hostpermissions": [
    "https://*/"
  ],
  "contentscripts": [
    {
      "matches": [
        "https://*/",
        "https://*.amazon.com*",
        "https://*.mercadolivre.com/*",
        "https://*.mercadolibre.com/*",
        "https://*.aliexpress.com*",
        "https://*.shopee.com*",
        "https://*.kabum.com*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "/popup/popup.html",
    "default_icon": {
      "16": "/images/cart-480.png",
      "32": "/images/cart-480.png",
      "48": "/images/cart-480.png",
      "128": "/images/cart-480.png"
    }
  },
  "icons": {
    "16": "images/cart-480.png",
    "32": "images/cart-480.png",
    "48": "images/cart-480.png",
    "128": "images/cart-480.png"
  },
  "options_page": "options/options.html"
}