Sort Eat Out
Highlights vegan and vegetarian items on takeout menus.
Co je Sort Eat Out?
Sort Eat Out je rozšíření Chrome vyvinuté developer.sorteatout, a jeho hlavní funkcí je „Highlights vegan and vegetarian items on takeout menus.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Sort Eat Out
Stáhněte si soubory rozšíření Sort Eat Out ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | odfiljapdldjdpbcpogbhanmchpkgalm |
Oficiální URL | https://chromewebstore.google.com/detail/sort-eat-out/odfiljapdldjdpbcpogbhanmchpkgalm |
Popis | Highlights vegan and vegetarian items on takeout menus. |
Velikost souboru | 28.42 KB |
Počet instalací | 111 |
Aktuální Verze | 0.9.4 |
Poslední Aktualizace | 2022-01-25 |
Datum Vydání | 2021-08-15 |
Hodnocení | 4.86/5 Celkem 7 Hodnocení |
Vývojář | developer.sorteatout |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://www.sorteatout.com/ |
Podporované Jazyky | 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" } ] } |