Smart Buy

Smart Buy

Smart Buy automatically adds product to cart in flash sales.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Smart Buy",
  "description": "Smart Buy automatically adds product to cart in flash sales.",
  "version": "1.0",
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_popup": "index.html"
  },
  "icons": {
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "notifications",
    "storage",
    "gcm",
    "storage",
    "notifications",
    "identity"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/js/jquery.js",
        "/js/content-script.js"
      ]
    }
  ]
}