Sort Eat Out

Highlights vegan and vegetarian items on takeout menus.

¿Qué es Sort Eat Out?

Sort Eat Out es una extensión de Chrome desarrollada por developer.sorteatout, y su función principal es "Highlights vegan and vegetarian items on takeout menus.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Sort Eat Out

Descarga archivos de extensión Sort Eat Out en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Sort Eat Out Sort Eat Out
ID odfiljapdldjdpbcpogbhanmchpkgalm
URL Oficial https://chromewebstore.google.com/detail/sort-eat-out/odfiljapdldjdpbcpogbhanmchpkgalm
Descripción Highlights vegan and vegetarian items on takeout menus.
Tamaño del Archivo 28.42 KB
Cantidad de Instalaciones 111
Versión Actual 0.9.4
Última Actualización 2022-01-25
Fecha de Publicación 2021-08-15
Calificación 4.86/5 Total de 7 Calificaciones
Desarrollador developer.sorteatout
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.sorteatout.com/
Idiomas Soportados 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"
        }
    ]
}