Skip to content

Commit b6904a5

Browse files
Update README with new proxy support features and fixes
1 parent 37c3c33 commit b6904a5

File tree

1 file changed

+49
-7
lines changed

1 file changed

+49
-7
lines changed

README.md

Lines changed: 49 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,23 @@
2525
<img src="https://repobeats.axiom.co/api/embed/97888767d68bc2104aed23c14f34d310822b4bc8.svg">
2626
</p>
2727

28+
# 🆕 What's New
29+
30+
> **Latest update** brings full proxy support with automatic validation, a native file picker UI, and more reliable account data extraction.
31+
32+
<details open>
33+
<summary><b>Proxy Support — Latest</b></summary>
34+
35+
### ✨ New Features
36+
- **Proxy support** — HTTP, HTTPS, SOCKS4, and SOCKS5 proxies now fully supported
37+
- **Automatic proxy validation** — dead proxies are filtered out before checking begins, so no time is wasted
38+
- **Native file picker** — a Tkinter dialog window lets you browse and select your proxy list instead of editing config files
39+
40+
### 🔧 Fixes
41+
- **Email extraction rewritten** — now reads directly from Netflix's embedded `reactContext` JSON instead of relying on a CSS selector that no longer exists on live pages
42+
- **Plan extraction fixed** — regex cleanup no longer mangles plan names; `\xNN` and `\uNNNN` escape sequences are decoded correctly
43+
- **Country extraction**`countryOfSignup` is now read reliably from the same JSON blob, with a proper `"Unknown"` fallback
44+
</details>
2845

2946
# Installation
3047

@@ -51,13 +68,38 @@
5168

5269
## [Try colab-version](https://github.com/matheeshapathirana/Netflix-cookie-checker/tree/colab-version)
5370

54-
## Features
55-
- Multi-threading
56-
- Json + Netscape support
57-
- No Proxies Required
58-
- No Rate Limiting
59-
- Super Fast
60-
- Identify duplicate cookies
71+
72+
# Proxy Support
73+
74+
### Proxy File Format
75+
76+
Your proxy file should be a plain `.txt` with one proxy per line. All common formats are supported:
77+
78+
```
79+
# host:port
80+
1.2.3.4:8080
81+
82+
# host:port:user:pass
83+
1.2.3.4:8080:myuser:mypass
84+
85+
# user:pass@host:port
86+
myuser:mypass@1.2.3.4:8080
87+
```
88+
89+
Lines starting with `#` are ignored.
90+
91+
92+
## Features
93+
94+
- ✅ Multi-threading
95+
- ✅ JSON + Netscape cookie support
96+
- ✅ Optional proxy support (HTTP / HTTPS / SOCKS4 / SOCKS5)
97+
- ✅ Automatic proxy validation before use
98+
- ✅ No rate limiting
99+
- ✅ Super fast
100+
- ✅ Identifies duplicate cookies
101+
- ✅ Detects extra memberships
102+
61103

62104
# For any issues
63105
<a href="https://discord.gg/RSCdKeKB5X"><img src="https://discord.com/api/guilds/1121457935822901278/widget.png?style=banner2"></a>

0 commit comments

Comments
 (0)