Flipkart - Schedule & Auto Order| Flash Sale

Flipkart - Schedule & Auto Order| Flash Sale

This extension can automatically book your product on scheduled time.

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 - Schedule & Auto Order| Flash Sale",
  "description": "This extension can automatically book your product on scheduled time.",
  "version": "1.1.4",
  "browser_action": {
    "default_icon": "logo.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "logo128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "webNavigation",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "popup.js",
      "background.js",
      "jquery.min.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.flipkart.com/*",
        "https://*.flipkart.com/*"
      ],
      "js": [
        "jquery.min.js",
        "content_script.js",
        "jquery.countdown.min.js"
      ],
      "run_at": "document_start"
    }
  ]
}