Price Tracker for Amazon Price History

Price Tracker for Amazon Price History

Amazon Price Tracker tracks Amazon price History, Displays on-page price graphs, Auto Buy Mobile Phones during the Flash Sale.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Price Tracker for Amazon Price History",
  "version": "1.0.1",
  "description": "Amazon Price Tracker tracks Amazon price History, Displays on-page price graphs, Auto Buy Mobile Phones during the Flash Sale.",
  "icons": {
    "128": "images/icon.png"
  },
  "action": {
    "default_icon": "images/icon.png",
    "default_title": "Amazon Autobuy",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.amazon.in/*",
        "*://*.ajio.com/*",
        "*://*.myntra.com/*",
        "*://*.flipkart.com/*",
        "*://*.tatacliq.com/*",
        "*://*.zivame.com/*",
        "*://*.makemytrip.com/*",
        "*://*.goibibo.com/*",
        "*://*.oyorooms.com/*",
        "*://*.bigrock.in/*",
        "*://*.bluehost.in/*",
        "*://*.godaddy.com/*",
        "*://*.hostgator.in/*"
      ],
      "js": [
        "jquery.min.js",
        "aff.js",
        "amazon.js"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "jquery.min.js",
        "aff.js",
        "messaging.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "notifications",
    "tabs",
    "cookies",
    "gcm",
    "storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "amazon.js",
        "images/icon.png",
        "jquery.min.js",
        "aff.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "short_name": "Amazon Flash Sale AutoBuy."
}