Price Tracker for Amazon

Price Tracker for Amazon

Enable the Price Tracker for Amazon on product page. Find the detailed price history, available colors, and products ranks

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "3.1.5",
  "name": "Price Tracker for Amazon",
  "description": "Enable the Price Tracker for Amazon on product page. Find the detailed price history, available colors, and products ranks",
  "permissions": [
    "notifications"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "react-app-holder.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  }
}