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…
O que é Amazon Fresh Delivery Window Notifications?
Amazon Fresh Delivery Window Notifications é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Receive a desktop notification when there are delivery windows available for Amazon Fresh. Just add the extension and make sure…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Amazon Fresh Delivery Window Notifications
Baixe arquivos de extensão Amazon Fresh Delivery Window Notifications no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Amazon Fresh Delivery Window Notifications |
ID | nahfnbbfnffmhjmjdfglgoigpmidonin |
URL Oficial | https://chromewebstore.google.com/detail/amazon-fresh-delivery-win/nahfnbbfnffmhjmjdfglgoigpmidonin |
Descrição | Receive a desktop notification when there are delivery windows available for Amazon Fresh. Just add the extension and make sure… |
Tamanho do Arquivo | 29.4 KB |
Contagem de Instalações | 108 |
Versão Atual | 0.2 |
Última Atualização | 2020-04-09 |
Data de Publicação | 2020-04-09 |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |