Amazon Fresh Delivery Window Notifications

Receive a desktop notification when there are delivery windows available for Amazon Fresh. Just add the extension and make sure…

Amazon Fresh Delivery Window Notifications là gì?

Amazon Fresh Delivery Window Notifications là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Receive a desktop notification when there are delivery windows available for Amazon Fresh. Just add the extension and make sure…".

Ả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 Amazon Fresh Delivery Window Notifications

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

                        Receive a desktop notification when there are delivery windows available for Amazon Fresh.

Just add the extension and make sure there are items in your Amazon Fresh cart. Then click on the extension icon. Keep the tab open and you will receive a desktop notification when there are delivery windows available for you.

Alternatively, you can go directly to the "Schedule your order" page on Amazon.                    

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

Tên Amazon Fresh Delivery Window Notifications Amazon Fresh Delivery Window Notifications
ID nahfnbbfnffmhjmjdfglgoigpmidonin
URL Chính Thức https://chromewebstore.google.com/detail/amazon-fresh-delivery-win/nahfnbbfnffmhjmjdfglgoigpmidonin
Mô tả Receive a desktop notification when there are delivery windows available for Amazon Fresh. Just add the extension and make sure…
Kích Thước Tệp 29.4 KB
Số Lần Cài Đặt 108
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2020-04-09
Ngày Phát Hành 2020-04-09
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Amazon Fresh Delivery Window Notifications",
    "version": "0.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.com\/gp\/buy\/shipoptionselect\/handlers\/display.html*",
                "http:\/\/www.amazon.com\/gp\/buy\/shipoptionselect\/handlers\/display.html*",
                "https:\/\/smile.amazon.com\/gp\/buy\/shipoptionselect\/handlers\/display.html*",
                "http:\/\/smile.amazon.com\/gp\/buy\/shipoptionselect\/handlers\/display.html*"
            ],
            "js": [
                "jquery-3.4.1.slim.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "grocery.png"
    },
    "permissions": [
        "notifications"
    ]
}