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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον BPM Sprince, και η κύρια λειτουργία του είναι "Watch a hotels specific room, within specific dates, and get alerts when prices change".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Booking.com hotel price monitor
Λήψη αρχείων επέκτασης Booking.com hotel price monitor σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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!
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
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" ] } |