Sort Eat Out

Highlights vegan and vegetarian items on takeout menus.

Sort Eat Out क्या है?

Sort Eat Out developer.sorteatout द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Highlights vegan and vegetarian items on takeout menus."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Sort Eat Out एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Sort Eat Out Sort Eat Out
ID odfiljapdldjdpbcpogbhanmchpkgalm
आधिकारिक URL https://chromewebstore.google.com/detail/sort-eat-out/odfiljapdldjdpbcpogbhanmchpkgalm
विवरण Highlights vegan and vegetarian items on takeout menus.
फ़ाइल का आकार 28.42 KB
स्थापना संख्या 111
वर्तमान संस्करण 0.9.4
अंतिम अपडेट 2022-01-25
प्रकाशन तिथि 2021-08-15
रेटिंग 4.86/5 कुल 7 रेटिंग्स
डेवलपर developer.sorteatout
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.sorteatout.com/
समर्थित भाषाएँ 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"
        }
    ]
}