In-stock Alerts (Beta)
Get alerted when an item gets back in-stock.
什么是In-stock Alerts (Beta)?
In-stock Alerts (Beta)是由Mahesh开发的Chrome扩展程序,该扩展的主要功能是“Get alerted when an item gets back in-stock.”。
扩展截图
下载In-stock Alerts (Beta)扩展crx文件
下载In-stock Alerts (Beta)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is in beta! The app notifies you when an item is back in-stock. Currently, the app supports Amazon.com, Sam's Club and Target with more retailers planned in the near future. In this version, Amazon.com has been added. Also, the alert only works for online deliveries (not for pick-up or drive-up)...yet. How to use the extension: 1. Install the extension from Chrome Store 2. Visit target.com, amazon.com or samsclub.com and when you come across a product that is not in stock, look for the "Notify Me" yellow button. 3. Mouseover the button and enter your email address to subscribe to back-in-stock alerts for that product. 4. Once you receive the alert email, you can click on the product and buy it.
扩展基本信息
名称 | In-stock Alerts (Beta) |
ID | pcdmjenfjbffehpfmmdbkbdbgllpnmac |
官方URL | https://chromewebstore.google.com/detail/in-stock-alerts-beta/pcdmjenfjbffehpfmmdbkbdbgllpnmac |
简介 | Get alerted when an item gets back in-stock. |
文件大小 | 1.6 MB |
安装次数 | 677 |
当前版本 | 0.2.9 |
更新时间 | 2020-10-22 |
上架时间 | 2020-05-11 |
评分 | 1.83/5 共6次评分 |
开发者 | Mahesh |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.getinstockalerts.com/ |
支持的语言 | en |
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" } } |