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…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Amazon Fresh Delivery Window Notifications
قم بتنزيل ملفات الامتداد Amazon Fresh Delivery Window Notifications بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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" ] } |