Booking.com hotel price monitor

Watch a hotels specific room, within specific dates, and get alerts when prices change

Booking.com hotel price monitor क्या है?

Booking.com hotel price monitor BPM Sprince द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Watch a hotels specific room, within specific dates, and get alerts when prices change"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Booking.com hotel price monitor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Booking.com hotel room price monitor.


A simple, fast and easy way to monitor the hotel room prices on booking.com. This extension sits next to your address bar on chrome and alerts you if the prices of your preferred room fluctuate helping you save money when booking.

We have a simple 3 step set up process:

1) Visit booking.com and select the dates of your next trip

2) Click the extensions button and fetch the prices from the hotel

3) Select which price you'd like to monitor and we'll do the rest.

Once a price is being monitored we recheck the price every 2 hours - we'll notify you if the price changes or you can check up on all of the hotels in extensions "current trackers" section.

Please let me know if you'd like any changes to the extension - I'm open to all great ideas!                    

एक्सटेंशन की मूल जानकारी

नाम Booking.com hotel price monitor Booking.com hotel price monitor
ID kmdbijdekmlgpcpckaokjlibjnlokkla
आधिकारिक URL https://chrome.google.com/webstore/detail/bookingcom-hotel-price-mo/kmdbijdekmlgpcpckaokjlibjnlokkla
विवरण Watch a hotels specific room, within specific dates, and get alerts when prices change
फ़ाइल का आकार 54.28 KB
स्थापना संख्या 509
वर्तमान संस्करण 1.1
अंतिम अपडेट 2018-05-01
प्रकाशन तिथि 2018-05-01
रेटिंग 3.10/5 कुल 10 रेटिंग्स
डेवलपर BPM Sprince
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Booking.com hotel price monitor",
    "description": "Watch a hotels specific room, within specific dates, and get alerts when prices change",
    "version": "1.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.booking.com\/*"
            ],
            "js": [
                "jquery.js",
                "content_script.js"
            ],
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com https:\/\/www.google-analytics.com; object-src 'self'",
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        "webRequest",
        "webRequestBlocking",
        "storage",
        "tabs",
        "activeTab",
        "notifications"
    ]
}