A Python tool that opens as many Chrome tabs as you want. This script is designed for Windows only.
- Opens a specified number of Chrome tabs with a URL.
- Simple and easy to use.
- Python 3.x installed
- Google Chrome installed
-
Clone the repository:
git clone https://github.com/yourusername/chrome-tab-spammer.git cd chrome-tab-spammer
-
Ensure you have Python installed. You can download it from python.org.
-
Open a command prompt or terminal.
-
Navigate to the directory where the script is located.
-
Run the script:
python chrome_tab_spammer.py
-
Enter the number of tabs you would like to open when prompted.
import subprocess
number = int(input("How Many Tabs Would You Like to Open: "))
def crash():
processes = []
for _ in range(number):
processes.append(subprocess.Popen(["start", "chrome", "https://google.com"], shell=True))
for process in processes:
process.wait()
crash()