Sort Eat Out

Highlights vegan and vegetarian items on takeout menus.

ما هو Sort Eat Out؟

Sort Eat Out هو إضافة Chrome تم تطويرها بواسطة developer.sorteatout، والميزة الرئيسية لها هي "Highlights vegan and vegetarian items on takeout menus.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Sort Eat Out

قم بتنزيل ملفات الامتداد Sort Eat Out بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
        }
    ]
}