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