Mealmole - Compare Food Delivery Services
Automatically calculate your order’s price across DoorDash, Uber Eats, Grubhub, and Seamless.
Mealmole - Compare Food Delivery Services란 무엇입니까?
Mealmole - Compare Food Delivery Services은(는) https://mealmole.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically calculate your order’s price across DoorDash, Uber Eats, Grubhub, and Seamless."입니다.
확장 프로그램 스크린샷
Mealmole - Compare Food Delivery Services 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Shop like normal on your preferred food delivery site. At checkout, Mealmole will go digging for the best deal. We'll match you with the cheapest (or fastest, if you're in a rush!) offer for your individual order. Pocket the savings or use it towards another appetizer or dessert. 🤓 PRICES CALCULATED WITH EVERY ORDER Mealmole understands menu price markups and hidden service fees. Skip the headache of trying to wrap your head around misleading fee formulas. 🤑 AUTOMATICALLY APPLY MEMBERSHIPS AND PROMOTIONS Final prices for the same cart may differ from person to person. Mealmole’s calculated prices will automatically include all of your personal promotions and membership discounts, so you don’t need to worry about chasing deals: they’ll come running to you. 🥱 SHOP ON YOUR PREFERRED SITE Browse the menu and fill your cart on the food delivery site of your choosing. At checkout, Mealmole will automatically rebuild your cart on all competing services—no need to select your items twice. ———————————————————————————————— Ordering food on the go? Coming soon to iPhone and iPad. Mealmole is not affiliated with DoorDash, Uber Eats, Grubhub, or Seamless. By using the Mealmole browser extension, you agree to Mealmole’s terms and conditions (https://mealmole.com/terms)
확장 프로그램 기본 정보
이름 | Mealmole - Compare Food Delivery Services |
ID | ajgbkhomnefeilpkfpofpoikkpncmopk |
공식 URL | https://chromewebstore.google.com/detail/mealmole-compare-food-del/ajgbkhomnefeilpkfpofpoikkpncmopk |
설명 | Automatically calculate your order’s price across DoorDash, Uber Eats, Grubhub, and Seamless. |
파일 크기 | 571 KB |
설치 횟수 | 37 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2023-08-19 |
출시 날짜 | 2023-08-19 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | https://mealmole.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://mealmole.com |
개인정보 보호 정책 페이지 URL | https://mealmole.com/privacy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Mealmole - Compare Food Delivery Services", "description": "Automatically calculate your order\u2019s price across DoorDash, Uber Eats, Grubhub, and Seamless.", "version": "1.0.1", "minimum_chrome_version": "101", "icons": { "16": "assets\/icon16.png", "32": "assets\/icon32.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "permissions": [ "storage", "cookies", "declarativeNetRequestWithHostAccess" ], "host_permissions": [ "*:\/\/*.doordash.com\/*", "*:\/\/*.ubereats.com\/*", "*:\/\/*.grubhub.com\/*", "*:\/\/*.seamless.com\/*" ], "background": { "service_worker": "serviceWorker.bundle.js" }, "content_scripts": [ { "js": [ "grubhubContentScript.bundle.js" ], "matches": [ "*:\/\/*.grubhub.com\/checkout\/*" ], "run_at": "document_start" }, { "js": [ "contentScript.bundle.js" ], "matches": [ "*:\/\/*.doordash.com\/*", "*:\/\/*.ubereats.com\/*", "*:\/\/*.grubhub.com\/*", "*:\/\/*.seamless.com\/*" ], "run_at": "document_idle" } ], "action": { "default_icon": { "16": "assets\/icon16.png", "24": "assets\/icon24.png", "32": "assets\/icon32.png" }, "default_title": "Mealmole - Compare Food Delivery Services" }, "web_accessible_resources": [ { "resources": [ "assets\/*", "*.map" ], "matches": [ "*:\/\/*.doordash.com\/*", "*:\/\/*.ubereats.com\/*", "*:\/\/*.grubhub.com\/*", "*:\/\/*.seamless.com\/*" ] } ] } |