Delivery Availability Checker

Help you find the Amazon, Costco and Instacart delivery windows

Τι είναι το Delivery Availability Checker;

Το Delivery Availability Checker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον example.com, και η κύρια λειτουργία του είναι "Help you find the Amazon, Costco and Instacart delivery windows".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Delivery Availability Checker

Λήψη αρχείων επέκτασης Delivery Availability Checker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        A Chrome Extension that help you find the Amazon Prime Now (US, UK, Italy), Smile, Fresh, Whole Foods, Costco (same day) and Instacart delivery windows 

User Tutorial -> https://xswlme.github.io/101

We ❤️ open source -> https://github.com/xswlme/Delivery-Availability-Checker

# Version History

* 04/13/2020 -> 1.1.0 Fix issues, add tutorial and support Amazon Prime Now (Italy) -  Thanks @Marco
* 04/12/2020 -> 1.0.0 Support Amazon Smile and Add Control Panel 
* 04/09/2020 -> 0.0.7 Support Amazon Prime Now (UK) - Thanks @Ben 
* 04/07/2020 -> 0.0.6 Support Amazon Prime Now (US) - Thanks @Igor
* 04/04/2020 -> 0.0.5 Support Costco, Instacart
* 03/26/2020 -> 0.0.1 Init project because clorox wipes sold out

# How to use

Tutorial -> https://xswlme.github.io/101/

TLDR; Add your items from Amazon, Costco (same day) or Instacart , then go to checkout and leave the shipping schedule page in the chrome tab. You can switch to other tabs, the monitor is still running in the background.

# Support Website

Amazon Smile 
Amazon Prime Now (US & UK & Italy)
Amazon Fresh
Whole Foods
Costco (Same day delivery)
Instacart

# FAQ

Q1: What is the use of this extension?
A1: It replaces you refreshing webpage and looking at the screen. When it found an available delivery window it will notify you using chrome notification.

Q2: Will this extension cause my account to be blocked?
A2: Again, it just replaces you refreshing webpage and looking at the screen. And this extension will use a reasonable refresh rate.

Q3: Is there any security problem when I use this extension?
A3: This is just a refresh tool and finds a specific element to detect if it currently has an available delivery window. Therefore, it does not have a security problem.

Q4: Will this be unfair to other Amazon, Costco and Instacart users?
A4: This is an ethical issue. But please DO NOT abuse this extension.

# Contact
[email protected]                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Delivery Availability Checker Delivery Availability Checker
ID aciieodoebcieadfecdgeeooelmflkal
Επίσημο URL https://chromewebstore.google.com/detail/delivery-availability-che/aciieodoebcieadfecdgeeooelmflkal
Περιγραφή Help you find the Amazon, Costco and Instacart delivery windows
Μέγεθος Αρχείου 56.11 KB
Αριθμός Εγκαταστάσεων 1,225
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2020-04-14
Ημερομηνία Δημοσίευσης 2020-04-14
Αξιολόγηση 5.00/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής example.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://xswlme.github.io/
Διεύθυνση URL της Σελίδας Βοήθειας https://xswlme.github.io/101
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Delivery Availability Checker",
    "version": "1.1.0",
    "description": "Help you find the Amazon, Costco and Instacart delivery windows",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistant": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.amazon.com\/gp\/buy\/shipoptionselect\/handlers\/*",
                "https:\/\/*.amazon.com\/afx\/slotselection\/*",
                "https:\/\/primenow.amazon.com\/checkout\/enter-checkout*",
                "https:\/\/primenow.amazon.co.uk\/checkout\/enter-checkout*",
                "https:\/\/primenow.amazon.it\/checkout\/enter-checkout*",
                "https:\/\/*.instacart.com\/*",
                "https:\/\/*.costco.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "notifications",
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "img\/icon_16.png",
        "64": "img\/icon_64.png",
        "128": "img\/icon_128.png"
    },
    "browser_action": {
        "default_title": "Delivery Availability Checker",
        "default_popup": "popup.html"
    }
}