Delivery Slots Checker
Help you find the Amazon, Costco and Instacart delivery windows
Τι είναι το Delivery Slots Checker;
Το Delivery Slots Checker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον danmu, και η κύρια λειτουργία του είναι "Help you find the Amazon, Costco and Instacart delivery windows".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Delivery Slots Checker
Λήψη αρχείων επέκτασης 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" } } |