Track hotel prices after booking and receive price drop alerts to your email.
- Save up to 72% off of your next hotel reservations…
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Pruvo - Saving Money *AFTER* Booking (AE)",
"short_name": "Pruvo",
"version": "7.9",
"background": {
"scripts": [
"bower_components/jquery/dist/jquery.min.js",
"bower_components/lz-string/libs/lz-string.js",
"js/mixpanel-2-latest.min.js",
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*://*.booking.com/*",
"*://*.expedia.com/*",
"*://*.expedia.at/*",
"*://*.expedia.be/*",
"*://*.expedia.ca/*",
"*://*.expedia.ch/*",
"*://*.expedia.co.in/*",
"*://*.expedia.co.jp/*",
"*://*.expedia.com.ar/*",
"*://*.expedia.com.au/*",
"*://*.expedia.com.br/*",
"*://*.expedia.com.hk/*",
"*://*.expedia.com.my/*",
"*://*.expedia.co.nz/*",
"*://*.expedia.co.th/*",
"*://*.expedia.co.uk/*",
"*://*.expedia.de/*",
"*://*.expedia.es/*",
"*://*.expedia.fr/*",
"*://*.expedia.ie/*",
"*://*.expedia.it/*",
"*://*.expedia.mx/*",
"*://*.expedia.se/*",
"*://*.amoma.com/*",
"*://*.barcelo.com/*",
"*://*.bestwestern.com/*",
"*://*.bookcyprus.com/*",
"*://*.bookgreece.com/*",
"*://*.cheaptickets.com/*",
"*://*.choicehotels.com/*",
"*://*.despegar.com/*",
"*://*.destinia.co/*",
"*://*.ebookers.de/*",
"*://*.ebookers.com/*",
"*://*.hotwire.com/*",
"*://*.fairmont.com/*",
"*://*.fourseasons.com/*",
"*://*.getaroom.com/*",
"*://*.hilton.com/*",
"*://*.hostelworld.com/*",
"*://hotels.aircanada.com/*",
"*://hotels.norwegian.com/*",
"*://*.hotelopia.com/*",
"*://*.hoteles.com/*",
"*://*.hoteis.com/*",
"*://*.hotels.com/*",
"*://*.agoda.com/*",
"*://*.melia.com/*",
"*://*.mgmresorts.com/*",
"*://*.kayak.com/*",
"*://*.nh-hotels.com/*",
"*://*.motel6.com/*",
"*://*.otel.com/*",
"*://*.preferredhotels.com/*",
"*://*.prestigia.com/*",
"*://*.radisson.com/*",
"*://*.riu.com/*",
"*://*.roomdi.com/*",
"*://*.roomertravel.com/*",
"*://*.rydges.com/*",
"*://*.splitty.com/*",
"*://*.scandichotels.com/*",
"*://*.shangri-la.com/*",
"*://*.starwoodhotels.com/*",
"*://*.swissotel.com/*",
"*://*.hrs.com/*",
"*://*.ihg.com/*",
"*://*.israir.co.il/*",
"*://*.hyatt.com/*",
"*://*.lq.com/*",
"*://*.lastminute.com.au/*",
"*://*.lastminute.co.nz/*",
"*://*.kempinski.com/*",
"*://*.travelocity.com/*",
"*://*.orbitz.com/*",
"*://*.wotif.com/*",
"*://*.wotif.co.nz/*",
"*://*.priceline.com/*",
"*://*.wynnlasvegas.com/*",
"*://*.zenhotels.com/*",
"*://*.leonardo-hotels.com/*",
"*://*.marriott-res.com/*"
],
"js": [
"bower_components/jquery/dist/jquery.min.js",
"bower_components/lz-string/libs/lz-string.js",
"js/analytics.js",
"content.js"
],
"css": [
"css/pop-msg.css"
]
}
],
"web_accessible_resources": [],
"permissions": [
"storage",
"cookies",
"tabs",
"notifications",
"https://www.google-analytics.com/",
"webRequest",
"webRequestBlocking",
"*://*.pruvo.net/*",
"*://*.pruvo.com/*",
"*://*.pruvo.co.il/*",
"*://*.pruvo.co.uk/*",
"*://*.pruvo.co/*"
],
"browser_action": {
"default_icon": "assets/icon_128.png",
"default_popup": "popup.html"
},
"externally_connectable": {
"matches": [
"*://localhost/*",
"*://*.pruvo.net/*",
"*://*.pruvo.com/*",
"*://*.pruvo.co.il/*",
"*://*.pruvo.co.uk/*",
"*://*.pruvo.co/*"
]
},
"icons": {
"48": "assets/icon_48.png",
"128": "assets/icon_128.png"
},
"content_security_policy": "script-src 'self' https://www.google-analytics.com https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js https://www.google.com/recaptcha/api.js https://www.gstatic.com; object-src 'self'"
}