Delivery Slots Checker

Help you find the Amazon, Costco and Instacart delivery windows

什麼是Delivery Slots Checker?

Delivery Slots Checker是由danmu開發的Chrome擴展程式,該擴展的主要功能是“Help you find the Amazon, Costco and Instacart delivery windows”。

擴展截圖

screenshot
screenshot

下載Delivery Slots Checker擴展crx文件

下載Delivery Slots Checker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}