In-stock Alerts (Beta)

In-stock Alerts (Beta)

Get alerted when an item gets back in-stock.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "In-stock Alerts (Beta)",
  "version": "0.2.9",
  "description": "Get alerted when an item gets back in-stock.",
  "content_scripts": [
    {
      "matches": [
        "https://*.samsclub.com/*",
        "https://*.target.com/*",
        "https://*.cvs.com/*",
        "https://*.amazon.com/*"
      ],
      "css": [
        "application.css"
      ],
      "js": [
        "jquery.min.js",
        "content.js",
        "application.js"
      ],
      "web_accessible_resources": [
        "logo.png"
      ],
      "permissions": [
        "https://*.samsclub.com/*",
        "https://*.target.com/*",
        "https://*.cvs.com/*",
        "https://*.amazon.com/*"
      ]
    }
  ],
  "icons": {
    "128": "logo128.png"
  }
}