Sort Eat Out

Highlights vegan and vegetarian items on takeout menus.

什麼是Sort Eat Out?

Sort Eat Out是由developer.sorteatout開發的Chrome擴展程式,該擴展的主要功能是“Highlights vegan and vegetarian items on takeout menus.”。

擴展截圖

screenshot
screenshot
screenshot

下載Sort Eat Out擴展crx文件

下載Sort Eat Out擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    ]
}