Historic Price Shopper: Amazon Price Tracking

Historic Price Shopper: Amazon Price Tracking

Adds Amazon.com historical price graph above the 'Add To Cart' button so you can monitor if it's a good time to buy.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Historic Price Shopper: Amazon Price Tracking",
  "version": "0.51",
  "manifest_version": 3,
  "description": "Adds Amazon.com historical price graph above the 'Add To Cart' button so you can monitor if it's a good time to buy.",
  "icons": {
    "32": "AmazonIcon32.png",
    "48": "AmazonIcon48.png",
    "64": "AmazonIcon64.png",
    "96": "AmazonIcon96.png",
    "128": "AmazonIcon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.amazon.com/*",
        "https://smile.amazon.com/*",
        "https://amazon.com/*",
        "https://www.amazon.ca/*",
        "https://amazon.ca/*",
        "https://www.amazon.co.uk/*",
        "https://amazon.co.uk/*"
      ],
      "js": [
        "jquery-2.1.4.min.js",
        "lru.js",
        "amazonfs.js",
        "progressbar.js",
        "amazon.user.js",
        "amazonccc.js"
      ]
    }
  ],
  "host_permissions": [
    "http://fakespot.com/",
    "http://*.fakespot.com/",
    "https://fakespot.com/",
    "https://*.fakespot.com/",
    "http://camelcamelcamel.com/",
    "http://*.camelcamelcamel.com/",
    "https://camelcamelcamel.com/",
    "https://*.camelcamelcamel.com/"
  ]
}