Delivery Slots Checker
Help you find the Amazon, Costco and Instacart delivery windows
Was ist Delivery Slots Checker?
Delivery Slots Checker ist eine Chrome-Erweiterung, die von danmu entwickelt wurde, und ihr Hauptmerkmal ist "Help you find the Amazon, Costco and Instacart delivery windows".
Erweiterungsscreenshots
Delivery Slots Checker-Erweiterungs-CRX-Datei herunterladen
Laden Sie Delivery Slots Checker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Delivery Slots Checker |
ID | ieaohdocegemmbegnidnahopilhpaiki |
Offizielle URL | https://chromewebstore.google.com/detail/delivery-slots-checker/ieaohdocegemmbegnidnahopilhpaiki |
Beschreibung | Help you find the Amazon, Costco and Instacart delivery windows |
Dateigröße | 673 KB |
Installationsanzahl | 79 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2020-04-11 |
Veröffentlichungsdatum | 2020-04-11 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | danmu |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |