Amazon Fresh Delivery Window Notifications
Receive a desktop notification when there are delivery windows available for Amazon Fresh. Just add the extension and make sure…
Τι είναι το Amazon Fresh Delivery Window Notifications;
Το Amazon Fresh Delivery Window Notifications είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "Receive a desktop notification when there are delivery windows available for Amazon Fresh. Just add the extension and make sure…".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Amazon Fresh Delivery Window Notifications
Λήψη αρχείων επέκτασης Amazon Fresh Delivery Window Notifications σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Receive a desktop notification when there are delivery windows available for Amazon Fresh. Just add the extension and make sure there are items in your Amazon Fresh cart. Then click on the extension icon. Keep the tab open and you will receive a desktop notification when there are delivery windows available for you. Alternatively, you can go directly to the "Schedule your order" page on Amazon.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Amazon Fresh Delivery Window Notifications |
ID | nahfnbbfnffmhjmjdfglgoigpmidonin |
Επίσημο URL | https://chromewebstore.google.com/detail/amazon-fresh-delivery-win/nahfnbbfnffmhjmjdfglgoigpmidonin |
Περιγραφή | Receive a desktop notification when there are delivery windows available for Amazon Fresh. Just add the extension and make sure… |
Μέγεθος Αρχείου | 29.4 KB |
Αριθμός Εγκαταστάσεων | 108 |
Τρέχουσα Έκδοση | 0.2 |
Τελευταία Ενημέρωση | 2020-04-09 |
Ημερομηνία Δημοσίευσης | 2020-04-09 |
Προγραμματιστής | Unknown |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Amazon Fresh Delivery Window Notifications", "version": "0.2", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.amazon.com\/gp\/buy\/shipoptionselect\/handlers\/display.html*", "http:\/\/www.amazon.com\/gp\/buy\/shipoptionselect\/handlers\/display.html*", "https:\/\/smile.amazon.com\/gp\/buy\/shipoptionselect\/handlers\/display.html*", "http:\/\/smile.amazon.com\/gp\/buy\/shipoptionselect\/handlers\/display.html*" ], "js": [ "jquery-3.4.1.slim.min.js", "content.js" ] } ], "browser_action": { "default_icon": "grocery.png" }, "permissions": [ "notifications" ] } |