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…
¿Qué es Amazon Fresh Delivery Window Notifications?
Amazon Fresh Delivery Window Notifications es una extensión de Chrome desarrollada por Unknown, y su función principal es "Receive a desktop notification when there are delivery windows available for Amazon Fresh. Just add the extension and make sure…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Amazon Fresh Delivery Window Notifications
Descarga archivos de extensión Amazon Fresh Delivery Window Notifications en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Amazon Fresh Delivery Window Notifications |
ID | nahfnbbfnffmhjmjdfglgoigpmidonin |
URL Oficial | https://chromewebstore.google.com/detail/amazon-fresh-delivery-win/nahfnbbfnffmhjmjdfglgoigpmidonin |
Descripción | Receive a desktop notification when there are delivery windows available for Amazon Fresh. Just add the extension and make sure… |
Tamaño del Archivo | 29.4 KB |
Cantidad de Instalaciones | 108 |
Versión Actual | 0.2 |
Última Actualización | 2020-04-09 |
Fecha de Publicación | 2020-04-09 |
Desarrollador | Unknown |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |