Toggle cloudflare warp in quick settings. This extension depends on warp-cli parsing. To quickly get started, Read the Docs: https://github.com/khaled-0/gnome-cloudflare-warp-toggle#readme This extension is not affiliated, funded, or in any way associated with Cloudflare. To Setup warp-cli, follow the official guide: https://developers.cloudflare.com/warp-client/get-started/linux/
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
Version | Status |
---|---|
16 | Active |
15 | Active |
14 | Active |
13 | Active |
12 | Active |
11 | Active |
10 | Active |
9 | Active |
8 | Active |
7 | Rejected |
6 | Rejected |
5 | Active |
4 | Active |
3 | Active |
2 | Rejected |
1 | Rejected |
line 76 should be ```js this._timeout2 = setTimeout(() => this._update(), 1000); ``` and in disable you should add: ```js if (this._timeout2) { clearTimeout(this._timeout2); this._timeout2 = null; } ``` Also use this instead of line 32-36: ```js if (this._timeout) { clearTimeout(this._timeout); this._timeout = null; } ```