Sort Eat Out
Highlights vegan and vegetarian items on takeout menus.
Qu'est-ce que Sort Eat Out ?
Sort Eat Out est une extension Chrome développée par developer.sorteatout, et sa fonction principale est "Highlights vegan and vegetarian items on takeout menus.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Sort Eat Out
Téléchargez les fichiers d'extension Sort Eat Out au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | odfiljapdldjdpbcpogbhanmchpkgalm |
URL Officiel | https://chromewebstore.google.com/detail/sort-eat-out/odfiljapdldjdpbcpogbhanmchpkgalm |
Description | Highlights vegan and vegetarian items on takeout menus. |
Taille du Fichier | 28.42 KB |
Nombre d'Installations | 111 |
Version Actuelle | 0.9.4 |
Dernière Mise à Jour | 2022-01-25 |
Date de Publication | 2021-08-15 |
Évaluation | 4.86/5 Total 7 Évaluations |
Développeur | developer.sorteatout |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.sorteatout.com/ |
Langues Prises en Charge | 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" } ] } |