Sort Eat Out
Highlights vegan and vegetarian items on takeout menus.
Was ist Sort Eat Out?
Sort Eat Out ist eine Chrome-Erweiterung, die von developer.sorteatout entwickelt wurde, und ihr Hauptmerkmal ist "Highlights vegan and vegetarian items on takeout menus.".
Erweiterungsscreenshots
Sort Eat Out-Erweiterungs-CRX-Datei herunterladen
Laden Sie Sort Eat Out-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | odfiljapdldjdpbcpogbhanmchpkgalm |
Offizielle URL | https://chromewebstore.google.com/detail/sort-eat-out/odfiljapdldjdpbcpogbhanmchpkgalm |
Beschreibung | Highlights vegan and vegetarian items on takeout menus. |
Dateigröße | 28.42 KB |
Installationsanzahl | 111 |
Aktuelle Version | 0.9.4 |
Letztes Update | 2022-01-25 |
Veröffentlichungsdatum | 2021-08-15 |
Bewertung | 4.86/5 Insgesamt 7 Bewertungen |
Entwickler | developer.sorteatout |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.sorteatout.com/ |
Unterstützte Sprachen | 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" } ] } |