Sort Eat Out
Highlights vegan and vegetarian items on takeout menus.
Cos'è Sort Eat Out?
Sort Eat Out è un'estensione di Chrome sviluppata da developer.sorteatout, e la sua funzione principale è "Highlights vegan and vegetarian items on takeout menus.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Sort Eat Out
Scarica i file di estensione Sort Eat Out in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | odfiljapdldjdpbcpogbhanmchpkgalm |
URL Ufficiale | https://chromewebstore.google.com/detail/sort-eat-out/odfiljapdldjdpbcpogbhanmchpkgalm |
Descrizione | Highlights vegan and vegetarian items on takeout menus. |
Dimensione del File | 28.42 KB |
Conteggio Installazioni | 111 |
Versione Corrente | 0.9.4 |
Ultimo Aggiornamento | 2022-01-25 |
Data di Pubblicazione | 2021-08-15 |
Valutazione | 4.86/5 Totale 7 Valutazioni |
Sviluppatore | developer.sorteatout |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.sorteatout.com/ |
Lingue Supportate | 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" } ] } |