Groceries Delivery Checker

Groceries Delivery Checker for Wholefood, Fresh, Instacart and Costco

Groceries Delivery Checker란 무엇입니까?

Groceries Delivery Checker은(는) Peter Ng.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Groceries Delivery Checker for Wholefood, Fresh, Instacart and Costco"입니다.

확장 프로그램 스크린샷

screenshot

Groceries Delivery Checker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        ** NOTE: This is one of the very first checkers out there in the extension store. As the source code of this project has been published, a lot of so-called developers stole it and made their own. They all work the same, and please check the published date of my code vs the time a new extension is published. I've been receiving a lot of fake emails and comments accusing me of everything they can think of. I do not care.

A fast way to check for Groceries delivery on Amazon Whole food, Amazon Fresh, Costco (which also use Instacart). 

Instruction:
Simply add all the items you want into your cart then go to the checkout page where the delivery availability is shown. The extension will take care of the rest.

- You can leave that tab open and work on other tabs, or just do something else.
- The basket icon on toolbar will turn green, indicating that the extension is enabled on that page.
- When a delivery window becomes available you will hear a rooster sound and a notification.
- It's when you need to come back and check the option, and click order. (Note: the tool will not order for you)

This is an open-source project, more information can be found at, feedback and help are welcome: 
https://github.com/nguyenph88/Groceries-Delivery-Checker                    

확장 프로그램 기본 정보

이름 Groceries Delivery Checker Groceries Delivery Checker
ID dpmodgniedhdblcigfekhgdgmlehkbne
공식 URL https://chromewebstore.google.com/detail/groceries-delivery-checke/dpmodgniedhdblcigfekhgdgmlehkbne
설명 Groceries Delivery Checker for Wholefood, Fresh, Instacart and Costco
파일 크기 81.93 KB
설치 횟수 124
현재 버전 0.3
최근 업데이트 2020-04-24
출시 날짜 2020-04-24
평점 5.00/5 총 1 개의 평점
개발자 Peter Ng.
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/nguyenph88/Groceries-Delivery-Checker
도움말 페이지 URL https://github.com/nguyenph88/Groceries-Delivery-Checker
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Groceries Delivery Checker",
    "permissions": [
        "notifications"
    ],
    "version": "0.3",
    "background": {
        "persistant": false,
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_title": "Groceries Delivery Checker"
    },
    "content_scripts": [
        {
            "js": [
                "js\/content.js"
            ],
            "matches": [
                "https:\/\/*.amazon.com\/*",
                "https:\/\/*.amazon.co.uk\/*",
                "https:\/\/*.instacart.com\/*",
                "https:\/\/*.costco.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Groceries Delivery Checker for Wholefood, Fresh, Instacart and Costco",
    "icons": {
        "16": "icons\/groceries_16.png",
        "64": "icons\/groceries_64.png",
        "128": "icons\/groceries_128.png"
    }
}