A Millennium plugin that integrates CSStats.gg data and functionality directly into the Steam client, providing enhanced Counter-Strike statistics and profile information.
Before installing this plugin, ensure you have:
- Steam Client (Windows/macOS/Linux)
- Millennium installed and configured
- Node.js (version 16 or higher) with pnpm package manager
- Python 3.7+ with pip
- Steam must be installed in a standard location
- Sufficient permissions to modify Steam plugin directory
- Internet connection for downloading dependencies and CSStats.gg data
-
Download the latest release
- Go to the Releases page
- Download the CSStats Extension Plugin
csstats-extension.zip
file
-
Extract the plugin
# Windows # Extract to: C:\Program Files (x86)\Steam\plugins\csstats-extension # Linux # Extract to: ~/.local/share/millennium/plugins/csstats-extension # macOS # Extract to: ~/Library/Application Support/millennium/plugins/csstats-extension
-
Enable the plugin
- Restart Steam completely (close from system tray)
- Open Steam and go to Millennium → Plugins
- Find "CSStats.gg Extension" and enable it
- Restart Steam again
git clone https://github.com/TOR968/csstats-extension.git
cd csstats-extension
Install Node.js dependencies:
# Install pnpm if you haven't already
npm install -g pnpm
# Install project dependencies
pnpm install
Install Python dependencies:
# Windows
pip install -r requirements.txt
# Linux/macOS
pip3 install -r requirements.txt
For development:
pnpm run dev
For production:
pnpm run build
Option A: Copy to plugins directory
# Windows
copy /R . "C:\Program Files (x86)\Steam\plugins\csstats-extension"
# Linux
cp -r . ~/.local/share/millennium/plugins/csstats-extension
# macOS
cp -r . ~/Library/Application\ Support/millennium/plugins/csstats-extension
Option B: Create symbolic link (for development)
# Windows (run as Administrator)
mklink /D "C:\Program Files (x86)\Steam\plugins\csstats-extension" "%CD%"
# Linux/macOS
ln -s "$(pwd)" ~/.local/share/millennium/plugins/csstats-extension
- Completely close Steam (including system tray)
- Restart Steam
- Go to Millennium → Plugins
- Enable "CSStats.gg Extension"
- Restart Steam once more
For detailed release instructions, see RELEASE.md.
This project is licensed under the MIT License - see the LICENSE file for details.