├── AlguienClient.js ├── README.md └── extension ├── .gitignore ├── icon-128.png ├── icon-16.png ├── icon-48.png ├── manifest.json └── rules.json /README.md: -------------------------------------------------------------------------------- 1 | # Alguien Client - Survev.io Client 2 | 3 | ## Important Notes: 4 | ⚠ **This client is not a hack** ⚠ 5 | 6 | ⚠ **If the game is updated, the client will not work until it is updated** ⚠ 7 | 8 | - **Bugs**: For issues or ideas, contact on Discord: SoyAlguien. 9 | - **Youtube Channel**: https://www.youtube.com/SoyAlguien 10 | 11 | ## Installation (Updated) 12 | 13 | ### Steps to install the extension: 14 | 1. **Download the Extension**: Save the extension zip file to your computer. On the main page of the repository, click on the green **Code** button. Select **Download ZIP**. 15 | ![Green Code Buttoon](https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSyCD_yJPGRDUpG98wHPW4o0dRcAwMSCtj-6w&s) 16 | 17 | 2. **Unzip the File**: Extract the contents of the zip file to a folder. 18 | 3. **Add the Extension**: 19 | - Open your browser and go to the extensions page. 20 | - Enable **Developer Mode**. 21 | - Click on **Load Unpacked** and select the folder where you unzipped the extension. **Select the folder named "extension"**. 22 | 4. **Enjoy**: Start using the Alguien Client and enjoy the enhanced features! 23 | 24 | 25 | ## Features 26 | 27 | - **FPS Uncap and Counter** 28 | - **Health and Adrenaline Info** 29 | - **Weapon Border Customization** 30 | - **Movement/Camera Interpolation & Rotation (Local-Based)** 31 | - **Kills and Ping Counter** 32 | - **UI Improvements** 33 | - **Menu Enhancements** 34 | 35 | ## Usage 36 | - Press the **P** key to show/hide the menu. 37 | - In the menu, you can toggle: 38 | - **FPS Counter** 39 | - **Kills Counter** 40 | - **Ping Counter** 41 | - **Change Background** 42 | - **Clean Menu** 43 | - **Hide/Show Menu** 44 | 45 | Enjoy the enhanced experience with Alguien Client! 🚀 46 | -------------------------------------------------------------------------------- /extension/.gitignore: -------------------------------------------------------------------------------- 1 | _metadata/ 2 | -------------------------------------------------------------------------------- /extension/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyAlguien0/AlguienClient-Survev.io_Client/f31a8ddaaef8c9e6c5372dfb50b0a0d8a6b83efd/extension/icon-128.png -------------------------------------------------------------------------------- /extension/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyAlguien0/AlguienClient-Survev.io_Client/f31a8ddaaef8c9e6c5372dfb50b0a0d8a6b83efd/extension/icon-16.png -------------------------------------------------------------------------------- /extension/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SoyAlguien0/AlguienClient-Survev.io_Client/f31a8ddaaef8c9e6c5372dfb50b0a0d8a6b83efd/extension/icon-48.png -------------------------------------------------------------------------------- /extension/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 3, 3 | "name": "AlguienClient", 4 | "version": "1.1", 5 | "permissions": [ 6 | "declarativeNetRequest", 7 | "declarativeNetRequestWithHostAccess" 8 | ], 9 | "host_permissions": [ 10 | "https://survev.io/*", 11 | "https://soyalguien0.github.io/*" 12 | ], 13 | "declarative_net_request": { 14 | "rule_resources": [ 15 | { 16 | "id": "ruleset_1", 17 | "enabled": true, 18 | "path": "rules.json" 19 | } 20 | ] 21 | }, 22 | "icons": { 23 | "16": "icon-16.png", 24 | "48": "icon-48.png", 25 | "128": "icon-128.png" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /extension/rules.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": 1, 4 | "priority": 1, 5 | "action": { 6 | "type": "redirect", 7 | "redirect": { 8 | "url": "https://soyalguien0.github.io/AlguienClient-Survev.io_Client/AlguienClient.js" 9 | } 10 | }, 11 | "condition": { 12 | "urlFilter": "DC5e4XBt.js", 13 | "resourceTypes": ["script"], 14 | "domains": ["survev.io"] 15 | } 16 | } 17 | ] 18 | --------------------------------------------------------------------------------