Delivery Slots Checker

Help you find the Amazon, Costco and Instacart delivery windows

Qu'est-ce que Delivery Slots Checker ?

Delivery Slots Checker est une extension Chrome développée par danmu, et sa fonction principale est "Help you find the Amazon, Costco and Instacart delivery windows".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Delivery Slots Checker

Téléchargez les fichiers d'extension Delivery Slots Checker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Delivery Slots Checker Delivery Slots Checker
ID ieaohdocegemmbegnidnahopilhpaiki
URL Officiel https://chromewebstore.google.com/detail/delivery-slots-checker/ieaohdocegemmbegnidnahopilhpaiki
Description Help you find the Amazon, Costco and Instacart delivery windows
Taille du Fichier 673 KB
Nombre d'Installations 79
Version Actuelle 1.0.0
Dernière Mise à Jour 2020-04-11
Date de Publication 2020-04-11
Évaluation 5.00/5 Total 2 Évaluations
Développeur danmu
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}