Bing Search Bot is a simple web application built using React that automates Bing searches based on random search queries. Users can specify the number of searches and the delay time between each search. The application opens new tabs in the browser, performs Bing searches with random queries, and allows users to stop the searches and close all opened tabs.
Enter the Number of Searches and Delay Time in the input fields.
Click on Start Searches to initiate automated Bing searches.
Once the searches are started, make sure to allow pop-ups in the browser.
Click on Stop Searches to halt the ongoing searches.
Click on Close all Tabs to close all the opened search result tabs in one click.
The application will be accessible at https://arzzam-bing-search-bot.vercel.app/
Contributions are welcome! If you find any issues or suggestions or want to contribute to the project, please create a new issue or fork the repository and submit a pull request.
This project is licensed under the MIT License - see the LICENSE file for details.
Note: This project is created for educational purposes and should be used responsibly. Automated searches can violate the terms of service of search engines, so use this application responsibly and in compliance with the policies of the search engine provider.
Disclaimer: This project is not affiliated with or endorsed by Bing or Microsoft.
Give a star if you like this project!
Before you begin, ensure you have the following installed:
Fork this repository.
Clone your forked repository:
git clone https://github.com/your-username/bing-search-bot.git
Change directory:
cd bing-search-bot
Install dependencies:
npm install
# or
yarn //preferred
Start the development server:
npm run dev
# or
yarn dev
The application will be accessible at http://localhost:5173
.
Make sure to add remote upstream:
git remote add upstream
# To verify the new upstream repository you've specified for your fork
git remote -v
Create a new branch:
git checkout -b new-branch-name
Make changes and create a pull request to the main branch.