Because automatic issue modifications via GitHub Actions lack fine-grained control. This extension brings AI directly into the GitHub interface, allowing you to generate concise issue titles in real time based on your description.
- 🌐 Auto-translate: Translates issue descriptions to English using Google Translate
- ✨ Title generation: Generates concise GitHub issue titles using LLM API
- 🚀 Magic button: One-click generation on new issues and edit forms
- 📝 Works on: New issues and existing issue edits
Copy the config template and add your API key:
cp config.example.js config.jsEdit config.js and replace with your actual credentials:
const CONFIG = {
OPENAI_API_KEY: "your-actual-api-key-here",
LLM_API_URL: "<LLM_URL>/v1/chat/completions",
LLM_MODEL: "openai/gpt-4.1-mini",
};- Go to
chrome://extensions/ - Enable Developer mode (top right)
- Click Load unpacked
- Select this folder
Edit manifest.json and update the content script matches pattern:
"host_permissions": ["<LLM_URL>"]- New Issues: Click the ✨ magic button next to the title input
- Edit Issues: Click the ✨ magic button next to Cancel button

The button will:
- Translate the content to English
- Generate an appropriate title
- Fill it automatically
The config.js file is excluded from git and contains sensitive information. Never commit it!