Pricewire

Uncover hidden deals on Priceline and Hotwire. Buy with confidence knowing exactly what hotel you are booking.

Pricewire là gì?

Pricewire là một tiện ích mở rộng Chrome được phát triển bởi john, và tính năng chính của nó là "Uncover hidden deals on Priceline and Hotwire. Buy with confidence knowing exactly what hotel you are booking.".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Pricewire 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

                        We remove the mystery component of the "Express Deals" on Priceline and the “Hot Rate” on Hotwire. What is left is a great hotel deal you can now buy with confidence. Upgrade your hotel stay while saving more!

FEATURES

🛌 PRICELINE HIDDEN HOTEL NAME REVEAL 
Priceline has unique ‘Express Deals’ that offer up to 60% discounts on 5-star hotels.
The problem is that the name of the hotel is only shared with you after you pay and this is a non-refundable deal.
Thanks to our extension, you can book the hotel with confidence as we predict the “mystery deal” hotel name with 99% accuracy.


🛌 HOTWIRE HIDDEN HOTEL NAME REVEAL
Hotwire has unique ‘Hot rate” deals that offer up to 60% off discounts on 5-star hotels. The catch is that the name of the hotel is not revealed until after you pay and this is also a non-refundable deal.
Thanks to our extension, you can book the hotel with confidence as we predict the “mystery deal” hotel name with 99% accuracy.

Use the Pricewire extension to upgrade your travel lifestyle with fantastic hotel deals. Book with confidence and use the money saved to book extra hotel days, get show tickets, or enjoy delicious meals in local restaurants!                    

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

Tên Pricewire Pricewire
ID idjfpfpkgmpnkjojcajhgeknmmofmopd
URL Chính Thức https://chromewebstore.google.com/detail/pricewire/idjfpfpkgmpnkjojcajhgeknmmofmopd
Mô tả Uncover hidden deals on Priceline and Hotwire. Buy with confidence knowing exactly what hotel you are booking.
Kích Thước Tệp 237 KB
Số Lần Cài Đặt 1,153
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2022-11-30
Ngày Phát Hành 2022-10-04
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển john
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://pricewire.io
URL Trang Trợ Giúp https://pricewire.io/support
URL Trang Chính Sách Bảo Mật https://www.pricewire.io/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pricewire",
    "short_name": "PW",
    "description": "Uncover hidden deals on Priceline and Hotwire. Buy with confidence knowing exactly what hotel you are booking.",
    "version": "1.0.2",
    "manifest_version": 3,
    "homepage_url": "https:\/\/pricewire.io",
    "author": {
        "name": "Mohsin Ali",
        "url": "https:\/\/mohsinali.dev"
    },
    "background": {
        "service_worker": "js\/sw.js"
    },
    "action": {
        "default_icon": {
            "24": "icons\/24.png",
            "32": "icons\/32.png",
            "48": "icons\/48.png",
            "64": "icons\/64.png",
            "128": "icons\/128.png",
            "256": "icons\/256.png"
        }
    },
    "icons": {
        "24": "icons\/24.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png",
        "256": "icons\/256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.priceline.com\/relax\/at\/express\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/priceline.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.hotwire.com\/hotels\/details\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/hotwire.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/www.priceline.com\/*",
                "https:\/\/www.hotwire.com\/*"
            ],
            "resources": [
                "css\/widget.css",
                "icons\/*.png"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*.google.com\/*"
    ]
}