Tampermonkey userscript that suggests German words for Skribbl.io by filtering a large word list based on the current hint pattern.
- Smart pattern matching – filters words based on the Skribbl.io hint layout
- Wildcard support –
_is treated as an unknown letter - Multi‑word & hyphen support – handles phrases and compound words
- Real‑time updates – suggestions refresh as new letters appear
- Click‑to‑type – insert a suggestion into the chat with one click
- Minimal UI – small, non‑intrusive overlay
- Install Tampermonkey.
- Open
Skript.jsin this repository. - Copy the entire file content.
- Create a new userscript in Tampermonkey.
- Paste the copied code and save.
- Open skribbl.io – the script activates automatically on the page.
The script matches all words in the German word list against the current hint:
_→ unknown letter (wildcard)-→ hyphen inside compound words- space (
) → space between words - multi‑word hints → handled via segment lengths
Matching candidates are displayed in an overlay where you can click them to type them into the chat.
Skript.js– production‑ready Tampermonkey userscriptsrc/GermanWordList.txt– German word list used by the scriptsrc/TestWords.txt– test entries for developmentsrc/Hints_format.html– reference of the hint DOM structure used for parsing
- Browsers: Chrome, Firefox, Edge, Safari (with Tampermonkey)
- Site: Official Skribbl.io
- Dependencies: none besides Tampermonkey
- Join any Skribbl.io lobby.
- When it is your turn to guess, the script automatically reads the hint.
- Suggested words are shown in the overlay.
- Click a word to send it into the guess field.
- As more letters are revealed, the suggestions update automatically.
- Author: 062Leo
- Current language support: German word list, English UI
- Planned languages: English, Spanish, French (coming in future releases)
- Implementation: pattern‑based filtering with caching in plain JavaScript (no external libraries)
Contributions are very welcome:
- improve or extend the word lists (starting with German)
- help add support for English, Spanish, and French
- report bugs or suggest improvements to the UI/UX
Feel free to open issues or pull requests.
MIT License – free to use, modify, and share.
Note: For educational and entertainment purposes only. Please use responsibly and respect fair‑play rules.