Flipkart & Amazon Flash Sale - ChromeXT

Flipkart & Amazon Flash Sale - ChromeXT

Autobuy any product and Auto-apply Coupons on top sites like Flipkart, Amazon, Myntra and many more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Flipkart & Amazon Flash Sale - ChromeXT",
  "description": "Autobuy any product and Auto-apply Coupons on top sites like Flipkart, Amazon, Myntra and many more",
  "version": "2.4.2",
  "browser_action": {
    "default_icon": "icon160.png",
    "default_popup": "popup.html",
    "default_title": "ChromeXT"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "*://*.amazon.in/*",
        "*://*.flipkart.com/*",
        "*://shopatsc.com/*",
        "*://*.mi.com/*",
        "*://in.event.mi.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "icons": {
    "160": "icon160.png"
  },
  "web_accessible_resources": [
    "svg/*",
    "css/*"
  ],
  "permissions": [
    "storage",
    "activeTab",
    "background",
    "http://*/*",
    "https://*/*"
  ]
}