Groceries Delivery Checker

Groceries Delivery Checker for Wholefood, Fresh, Instacart and Costco

Groceries Delivery Checker là gì?

Groceries Delivery Checker là một tiện ích mở rộng Chrome được phát triển bởi Peter Ng., và tính năng chính của nó là "Groceries Delivery Checker for Wholefood, Fresh, Instacart and Costco".

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

screenshot

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

Tải xuống các tệp mở rộng Groceries Delivery 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

                        ** 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                    

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

Tên Groceries Delivery Checker Groceries Delivery Checker
ID dpmodgniedhdblcigfekhgdgmlehkbne
URL Chính Thức https://chromewebstore.google.com/detail/groceries-delivery-checke/dpmodgniedhdblcigfekhgdgmlehkbne
Mô tả Groceries Delivery Checker for Wholefood, Fresh, Instacart and Costco
Kích Thước Tệp 81.93 KB
Số Lần Cài Đặt 124
Phiên Bản Hiện Tại 0.3
Cập Nhật Lần Cuối 2020-04-24
Ngày Phát Hành 2020-04-24
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Peter Ng.
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/nguyenph88/Groceries-Delivery-Checker
URL Trang Trợ Giúp https://github.com/nguyenph88/Groceries-Delivery-Checker
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}