Sort Eat Out

Highlights vegan and vegetarian items on takeout menus.

Sort Eat Out là gì?

Sort Eat Out là một tiện ích mở rộng Chrome được phát triển bởi developer.sorteatout, và tính năng chính của nó là "Highlights vegan and vegetarian items on takeout menus.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sort Eat Out

Tải xuống các tệp mở rộng Sort Eat Out dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sort Eat Out Sort Eat Out
ID odfiljapdldjdpbcpogbhanmchpkgalm
URL Chính Thức https://chromewebstore.google.com/detail/sort-eat-out/odfiljapdldjdpbcpogbhanmchpkgalm
Mô tả Highlights vegan and vegetarian items on takeout menus.
Kích Thước Tệp 28.42 KB
Số Lần Cài Đặt 111
Phiên Bản Hiện Tại 0.9.4
Cập Nhật Lần Cuối 2022-01-25
Ngày Phát Hành 2021-08-15
Đánh Giá 4.86/5 Tổng số 7 Đánh Giá
Nhà Phát Triển developer.sorteatout
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.sorteatout.com/
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}