A collection of Chatterino2 Lua plugins. Each plugin lives in its own subdirectory and can be installed independently.
| Plugin | Description |
|---|---|
| show_title | Displays the current channel's stream title with options to trim the output. |
Every plugin follows this layout:
plugin_name/
├── info.json # Metadata (name, version, permissions, etc.)
├── init.lua # Entry point, loaded by Chatterino
├── data/ # Runtime data directory (file I/O is scoped here)
│ └── config.lua # Optional per-plugin configuration
└── README.md # Plugin-specific documentation
info.jsonfollows the Chatterino plugin-info schema.init.luais the entry point loaded by Chatterino.data/config.luais the convention for per-plugin configuration. It returns a Lua table of settings. See each plugin's README for available options.
- Copy the desired plugin directory (e.g.
show_title/) into Chatterino'sPluginsdirectory (sibling toSettingsandLogs). - Enable the plugin in Chatterino settings.
Apache-2.0