Pricewire

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

Pricewire란 무엇입니까?

Pricewire은(는) john에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Uncover hidden deals on Priceline and Hotwire. Buy with confidence knowing exactly what hotel you are booking."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Pricewire 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 Pricewire Pricewire
ID idjfpfpkgmpnkjojcajhgeknmmofmopd
공식 URL https://chromewebstore.google.com/detail/pricewire/idjfpfpkgmpnkjojcajhgeknmmofmopd
설명 Uncover hidden deals on Priceline and Hotwire. Buy with confidence knowing exactly what hotel you are booking.
파일 크기 237 KB
설치 횟수 1,153
현재 버전 1.0.2
최근 업데이트 2022-11-30
출시 날짜 2022-10-04
평점 5.00/5 총 5 개의 평점
개발자 john
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://pricewire.io
도움말 페이지 URL https://pricewire.io/support
개인정보 보호 정책 페이지 URL https://www.pricewire.io/privacy-policy
지원되는 언어 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\/*"
    ]
}