Real Price Tracker

Real Price Tracker

Real Price 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.4.7",
  "icons": {
    "128": "images/icon.png"
  },
  "action": {
    "default_icon": "images/icon.png",
    "default_title": "Price Tracker",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "graph.js"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "messaging.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "notifications",
    "tabs",
    "cookies",
    "gcm",
    "storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "graph.js",
        "images/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "short_name": "Price Tracker"
}