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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |