Delivery Slots Checker
Help you find the Amazon, Costco and Instacart delivery windows
Delivery Slots Checkerคืออะไร?
Delivery Slots Checker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย danmu และคุณลักษณะหลักของมันคือ "Help you find the Amazon, Costco and Instacart delivery windows"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Delivery Slots Checker
ดาวน์โหลดไฟล์ส่วนขยาย Delivery Slots Checker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
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" } } |