Delivery Slots Checker
Help you find the Amazon, Costco and Instacart delivery windows
什么是Delivery Slots Checker?
Delivery Slots Checker是由danmu开发的Chrome扩展程序,该扩展的主要功能是“Help you find the Amazon, Costco and Instacart delivery windows”。
扩展截图
下载Delivery Slots Checker扩展crx文件
下载Delivery Slots Checker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Check delivery slot availability on amazon fresh , primenow , costco and instacart, send a notification if there's a slot. Check multiple tabs on background. 1. Go to the check out page delivery slot page 2. The extension will check the page periodically and you don't need to stay on the page. 3. When a slot is found , you will get a notification.
扩展基本信息
名称 | Delivery Slots Checker |
ID | ieaohdocegemmbegnidnahopilhpaiki |
官方URL | https://chromewebstore.google.com/detail/delivery-slots-checker/ieaohdocegemmbegnidnahopilhpaiki |
简介 | Help you find the Amazon, Costco and Instacart delivery windows |
文件大小 | 673 KB |
安装次数 | 79 |
当前版本 | 1.0.0 |
更新时间 | 2020-04-11 |
上架时间 | 2020-04-11 |
评分 | 5.00/5 共2次评分 |
开发者 | danmu |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "version": "1.0.0", "description": "__MSG_appDesc__", "default_locale": "zh_CN", "background": { "scripts": [ "js\/background.js" ], "persistant": false }, "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/gp\/buy\/shipoptionselect\/handlers\/*", "https:\/\/www.amazon.com\/afx\/slotselection\/*", "https:\/\/primenow.amazon.com\/checkout\/enter-checkout*", "https:\/\/*.instacart.com\/*", "https:\/\/*.costco.com\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end" } ], "permissions": [ "tabs", "storage", "notifications" ], "icons": { "16": "img\/icon_16.png", "64": "img\/icon_64.png", "128": "img\/icon_128.png" }, "browser_action": { "default_popup": "js\/index.html", "default_title": "delivery slots checker" } } |