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คืออะไร?

Amazon Fresh Delivery Window Notifications เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Receive a desktop notification when there are delivery windows available for Amazon Fresh. Just add the extension and make sure…"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Amazon Fresh Delivery Window Notifications

ดาวน์โหลดไฟล์ส่วนขยาย Amazon Fresh Delivery Window Notifications ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Amazon Fresh Delivery Window Notifications Amazon Fresh Delivery Window Notifications
ID nahfnbbfnffmhjmjdfglgoigpmidonin
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/amazon-fresh-delivery-win/nahfnbbfnffmhjmjdfglgoigpmidonin
คำอธิบาย Receive a desktop notification when there are delivery windows available for Amazon Fresh. Just add the extension and make sure…
ขนาดไฟล์ 29.4 KB
จำนวนการติดตั้ง 108
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2020-04-09
วันที่เผยแพร่ 2020-04-09
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
    ]
}