Woltor
Woltor identifies temporarily offline restaurants on Wolt.com and allows you to track the restaurant availability
Woltor란 무엇입니까?
Woltor은(는) woltor-dev-group에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Woltor identifies temporarily offline restaurants on Wolt.com and allows you to track the restaurant availability"입니다.
확장 프로그램 스크린샷
Woltor 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
*New feature: now you can tracking a closed restaurant. Wolt.com provides food delivery services around the world. Each restaurant operates on certain days and hours. Any restaurant can change its status to temporarily offline when the load in the kitchen and/or the amount of deliveries is too high for the restaurant's capacity at the moment. If a user wants to order from a temporarily offline restaurant, the user must wait until the restaurant is back online. To identify when that happens, the user has to stay on the restaurant page, or every few minutes go back to it, refresh, and hope that the restaurant is back online. This process is tedious, and frustrating and requires a lot of time and attention from the user. That's why most users are giving up, ordering from another restaurant, and actually compromising on their not-first priority restaurant. Woltor is here to solve exactly this problem! Woltor identifies temporarily offline restaurants on Wolt.com and allows you to track the restaurant availability, you would like to order from. Woltor will wait for you until your favorite restaurant is back online. When that happens, Woltor will pop up a notification in your Chrome browser that enables you to go directly to the restaurant page on Wolt.com and start your order.
확장 프로그램 기본 정보
이름 | Woltor |
ID | eooijdfjlfcgoehcjemehakgnndeppee |
공식 URL | https://chromewebstore.google.com/detail/woltor/eooijdfjlfcgoehcjemehakgnndeppee |
설명 | Woltor identifies temporarily offline restaurants on Wolt.com and allows you to track the restaurant availability |
파일 크기 | 1.68 MB |
설치 횟수 | 42 |
현재 버전 | 2.0.2 |
최근 업데이트 | 2023-02-20 |
출시 날짜 | 2022-11-20 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | woltor-dev-group |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Woltor", "description": "Woltor identifies temporarily offline restaurants on Wolt.com and allows you to track the restaurant availability", "version": "2.0.2", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "tabs", "activeTab", "webNavigation" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content_script.js" ] } ], "web_accessible_resources": [ { "resources": [ "bell.png", "blue_bell.png", "googleAnalytics.js", "grey-bell.png", "service_bell_ring.mp3" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ], "icons": { "16": "icon.png" } } |