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
公式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
Eメール [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"
        }
    ]
}