https://github.com/avin/slack-mod
https://github.com/avin/slack-mod
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/avin/slack-mod
- Owner: avin
- Created: 2023-09-22T16:12:19.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2025-09-23T11:01:20.000Z (9 months ago)
- Last Synced: 2026-01-21T14:10:57.536Z (5 months ago)
- Language: Go
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Slack-Mod
Inject __JS__ and __CSS__ into the Official Slack Desktop Client. Works as a loader over the standard client.
## Build
### Windows
```sh
go build -ldflags "-s -w -H=windowsgui" -o slack-mod.exe
```
### macOS
```sh
go build -ldflags "-s -w" -o slack-mod
```
### Linux
```sh
go build -ldflags "-s -w" -o slack-mod
```
The macOS and Linux binaries run cleanly in the background when launched from the terminal, so no extra console window is created. If you prefer to start them detached from the shell session, use `nohup` or append `&` when launching.