Amazon Wishlist Subtotal

Amazon Wishlist Subtotal

Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Amazon Wishlist Subtotal",
  "description": "Automatically totals your Amazon wishlists. Save time and frustration by letting this extension do the work for you.",
  "version": "1.04",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "action": {
    "default_popup": "/html/popup.html",
    "default_icon": {
      "128": "/images/icon.png"
    }
  },
  "icons": {
    "128": "/images/icon.png"
  },
  "options_page": "html/options.html",
  "content_scripts": [
    {
      "js": [
        "content-script.js",
        "js/storage.js",
        "js/parse_price.js"
      ],
      "matches": [
        "https://*.amazon.com/*wishlist*"
      ],
      "run_at": "document_start"
    }
  ]
}