This browser extension allows you to filter Booking.com search results based on the minimum number of reviews a property has received.
- Download or clone this repository.
- Open Chrome and navigate to
chrome://extensions
. - Enable "Developer mode" in the top right corner.
- Click "Load unpacked" and select the directory where you saved the extension files.
- Navigate to Booking.com and perform a search.
- Open the extension popup by clicking the extension icon in the toolbar.
- Enter the minimum number of reviews you want to filter by.
- Click "Apply". The search results will be updated to only show properties with at least the specified number of reviews.
manifest.json
: Contains metadata about the extension, such as its name, version, and permissions.popup.html
: Defines the user interface for the extension popup.popup.js
: Handles the logic for the extension popup, such as getting the minimum number of reviews from the user and sending it to the content script.content.js
: Contains the main logic for the extension, such as filtering the search results based on the minimum number of reviews.
The extension requires the following permissions:
activeTab
: Allows the extension to access the currently active tab.scripting
: Allows the extension to inject JavaScript code into web pages.*://\*.booking.com/*
: Allows the extension to access Booking.com.