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."입니다.
확장 프로그램 스크린샷
Sort Eat Out 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.
확장 프로그램 기본 정보
이름 | |
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" } ] } |