CivitAI Helper
Overview
A Tampermonkey script that enhances the CivitAI prompt interface with tag autocomplete and wiki lookup features.
Features
Tag Autocomplete
- Suggests tags as you type using the Gelbooru database
- Can be turned on and off, using the checkbox
- Shows tag usage count
- Custom tags support for commonly used combinations (Can add custom tags using the settings panel)
- Navigate suggestions using arrow keys
- Insert tags using Tab or Enter
Tag Wiki Lookup
- Press 't' to open the wiki search (default, can be changed in settings)
- Shows detailed tag descriptions from Danbooru
- Includes example images with navigation
- Clickable related tags
- Keyboard shortcuts for image navigation (Left and Right)
- Previous and Next Tag Navigation like that of a web browser
- Contains a settings panel, which allow you to define custom autocomplete tags (Ex: "quality" becomes "masterpiece, high quality, etc")
Installation
- Install Tampermonkey browser extension
- Click the installation link or copy the script into a new Tampermonkey script
- Enable the script in Tampermonkey
Usage
Tag Autocomplete
- Start typing in the prompt field to see suggestions
- Use Up/Down arrows to navigate suggestions
- Press Tab or Enter to insert selected tag
- Press Escape to close suggestions
Wiki Search
- Press 'T' anywhere on CivitAI to open wiki search
- Type a tag name and press Enter to search
- Use Left/Right arrows to navigate images
- Click on related tags to explore
- Press Escape to close wiki
Technical Details
// ==UserScript==
// @name Civitai Prompt Autocomplete & Tag Wiki
// @namespace http://tampermonkey.net/
// @description Adds tag autocomplete and wiki lookup features
// @author AndroidXL
// @match https://civitai.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=civitai.com
// @grant GM.xmlHttpRequest
// ==/UserScript==
Compatibility
- Works on all modern browsers with Tampermonkey support
- Tested on Chrome, Firefox, and Edge
- Requires active internet connection for tag database access
Credits
- Uses Gelbooru's tag database for suggestions
- Wiki information sourced from Danbooru
- Created by AndroidXL