Delivery Slots Checker
Help you find the Amazon, Costco and Instacart delivery windows
¿Qué es Delivery Slots Checker?
Delivery Slots Checker es una extensión de Chrome desarrollada por danmu, y su función principal es "Help you find the Amazon, Costco and Instacart delivery windows".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Delivery Slots Checker
Descarga archivos de extensión Delivery Slots Checker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Delivery Slots Checker |
ID | ieaohdocegemmbegnidnahopilhpaiki |
URL Oficial | https://chromewebstore.google.com/detail/delivery-slots-checker/ieaohdocegemmbegnidnahopilhpaiki |
Descripción | Help you find the Amazon, Costco and Instacart delivery windows |
Tamaño del Archivo | 673 KB |
Cantidad de Instalaciones | 79 |
Versión Actual | 1.0.0 |
Última Actualización | 2020-04-11 |
Fecha de Publicación | 2020-04-11 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | danmu |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" } } |