Real Price History Tracker

Real Price History Tracker

Price History Tracker chrome extension shows the product's price history graph on Amazon, Flipkart, Myntra and other shopping sites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "1.0.1",
  "icons": {
    "128": "images/icon.png"
  },
  "action": {
    "default_icon": "images/icon.png",
    "default_title": "Price History Tracker",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "graph.js"
      ]
    }
  ],
  "permissions": [
    "notifications",
    "tabs",
    "gcm",
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "graph.js",
        "images/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "short_name": "Price History Tracker"
}