antibotbrowser 3.0.1 → 3.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +7 -3
  2. package/package.json +7 -3
package/README.md CHANGED
@@ -1,7 +1,11 @@
1
+
2
+ This library is designed to behave like a real browser, allowing you to bypass **Cloudflare Challenges** and other bot verification systems that often block traditional automated tools.
3
+
4
+ This is for educational purposes only. Bypassing systems like bot verification may be illegal. User responsibility lies with the user.
5
+
6
+ >**Note:** This package is compatible with **Puppeteer**, **Playwright**, and any other automation framework that supports the Chrome DevTools Protocol (CDP).
7
+
1
8
  # Usage
2
- > This library is designed to behave like a real browser, allowing you to bypass **Cloudflare Challenges** and other bot verification systems that often block traditional automated tools.
3
- > This is for educational purposes only. Bypassing systems like bot verification may be illegal. User responsibility lies with the user.
4
- > **Note:** This package is compatible with **Puppeteer**, **Playwright**, and any other automation framework that supports the Chrome DevTools Protocol (CDP).
5
9
  ## 1 - First let's start by installing the module
6
10
  ```
7
11
  npm install antibotbrowser
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "antibotbrowser",
3
- "version": "3.0.1",
4
- "description": "Opening Chromium opens a real browser without bot validations in automated systems like Puppetter. To avoid problems in places like Cloudflare",
3
+ "version": "3.0.3",
4
+ "description": "Opening Chromium opens a real browser without bot validations in automated systems like Puppeteer. To avoid problems in places like Cloudflare",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -20,5 +20,9 @@
20
20
  "license": "ISC",
21
21
  "dependencies": {
22
22
  "chromium": "3.0.3"
23
- }
23
+ },
24
+ "files": [
25
+ "index.js",
26
+ "README.md"
27
+ ]
24
28
  }