Plugin Development Guide
1. Environment Preparation
- Download and install Microsoft Visual Studio 2026.
2. Get the Main Project
Clone the main project repository and complete the local build:
bash
git clone https://github.com/jayfunc/BetterLyrics.git3. Create a Plugin Project
Clone and create your plugin project using the template link below:
4. Development & Configuration
- Open the plugin project, search globally for sections marked with
// TODO, and write your plugin's core logic. - Open the project configuration file and change
BetterLyricsHostDirto the absolute path where your localBetterLyricsmain project solution is located.
5. Build & Package
Once development is complete, build the plugin project directly. Upon a successful build, the relevant outputs will be automatically generated:
- Language Pack Folder (
Langs): Located atBetterLyrics.Plugins.Template/Langs - Plugin Installation Package (
.blp): Located atBetterLyrics.Plugins.Template/Dist
💡 Tip: If you need to improve or add multi-language support later, simply modify the contents in
Langsand rebuild the project.