Delivery Slots Checker

Help you find the Amazon, Costco and Instacart delivery windows

Delivery Slots Checker là gì?

Delivery Slots Checker là một tiện ích mở rộng Chrome được phát triển bởi danmu, và tính năng chính của nó là "Help you find the Amazon, Costco and Instacart delivery windows".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Delivery Slots Checker

Tải xuống các tệp mở rộng Delivery Slots Checker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Delivery Slots Checker Delivery Slots Checker
ID ieaohdocegemmbegnidnahopilhpaiki
URL Chính Thức https://chromewebstore.google.com/detail/delivery-slots-checker/ieaohdocegemmbegnidnahopilhpaiki
Mô tả Help you find the Amazon, Costco and Instacart delivery windows
Kích Thước Tệp 673 KB
Số Lần Cài Đặt 79
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2020-04-11
Ngày Phát Hành 2020-04-11
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển danmu
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}