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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}