Woltor

Woltor identifies temporarily offline restaurants on Wolt.com and allows you to track the restaurant availability

Woltor là gì?

Woltor là một tiện ích mở rộng Chrome được phát triển bởi woltor-dev-group, và tính năng chính của nó là "Woltor identifies temporarily offline restaurants on Wolt.com and allows you to track the restaurant availability".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Woltor

Tải xuống các tệp mở rộng Woltor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        *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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Woltor Woltor
ID eooijdfjlfcgoehcjemehakgnndeppee
URL Chính Thức https://chromewebstore.google.com/detail/woltor/eooijdfjlfcgoehcjemehakgnndeppee
Mô tả Woltor identifies temporarily offline restaurants on Wolt.com and allows you to track the restaurant availability
Kích Thước Tệp 1.68 MB
Số Lần Cài Đặt 42
Phiên Bản Hiện Tại 2.0.2
Cập Nhật Lần Cuối 2023-02-20
Ngày Phát Hành 2022-11-20
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển woltor-dev-group
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}