Sort Eat Out
Highlights vegan and vegetarian items on takeout menus.
Что такое Sort Eat Out?
Sort Eat Out - это расширение Chrome, разработанное developer.sorteatout, и его основная функция - "Highlights vegan and vegetarian items on takeout menus.".
Снимки экрана расширения
Скачать файл CRX расширения Sort Eat Out
Скачайте файлы расширений Sort Eat Out в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Sort Eat Out helps you choose the right meal based on your dietary preferences or restrictions, thus saving you countless minutes browsing food menus. Currently supporting DoorDash and Uber Eats. SortEatOut offers a Vegetarian and a Vegan filter, and will automatically color every item in the menu: a) Green - matches your filter b) Red - does not match your filter c) Yellow - uncertain, please check with the restaurant d) Grey - excluded, typically some drinks or desserts categories DISCLAIMER: The information provided by this extension is purely informational and not for the purpose of providing strict dietary advice, you should contact a dietician or confirm with the restaurant for strict dietary advice.
Основная информация о расширении
Название | |
ID | odfiljapdldjdpbcpogbhanmchpkgalm |
Официальный URL | https://chromewebstore.google.com/detail/sort-eat-out/odfiljapdldjdpbcpogbhanmchpkgalm |
Описание | Highlights vegan and vegetarian items on takeout menus. |
Размер файла | 28.42 KB |
Количество установок | 111 |
Текущая Версия | 0.9.4 |
Последнее Обновление | 2022-01-25 |
Дата публикации | 2021-08-15 |
Рейтинг | 4.86/5 Всего 7 оценок |
Разработчик | developer.sorteatout |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://www.sorteatout.com/ |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Sort Eat Out", "description": "Highlights vegan and vegetarian items on takeout menus.", "version": "0.9.4", "author": "@sorteaout.developer", "background": { "scripts": [ "background.js", "config.js" ], "persistent": true }, "permissions": [ "storage", "webRequest", "tabs" ], "browser_action": { "default_icon": "128.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.doordash.com\/*", "https:\/\/*.ubereats.com\/*" ], "js": [ "payload.js" ], "run_at": "document_end" } ] } |