Sort Eat Out

Highlights vegan and vegetarian items on takeout menus.

Hvad er Sort Eat Out?

Sort Eat Out er en Chrome-udvidelse udviklet af developer.sorteatout, og dens hovedfunktion er "Highlights vegan and vegetarian items on takeout menus.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Sort Eat Out-udvidelses-CRX-fil

Download Sort Eat Out-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Sort Eat Out Sort Eat Out
ID odfiljapdldjdpbcpogbhanmchpkgalm
Officiel URL https://chromewebstore.google.com/detail/sort-eat-out/odfiljapdldjdpbcpogbhanmchpkgalm
Beskrivelse Highlights vegan and vegetarian items on takeout menus.
Filstørrelse 28.42 KB
Antal Installationer 111
Nuværende Version 0.9.4
Senest Opdateret 2022-01-25
Udgivelsesdato 2021-08-15
Bedømmelse 4.86/5 Samlet 7 Bedømmelser
Udvikler developer.sorteatout
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.sorteatout.com/
Understøttede Sprog 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"
        }
    ]
}