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"
    ]
}