Delivery Slots Checker

Help you find the Amazon, Costco and Instacart delivery windows

Delivery Slots Checker क्या है?

Delivery Slots Checker danmu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Help you find the Amazon, Costco and Instacart delivery windows"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Delivery Slots Checker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
    }
}