User:Daniel Quinlan/Scripts/SockTags
From Wikipedia, the free encyclopedia
The SockTags script enhances Wikipedia:Sockpuppet investigations pages by displaying visual indicators next to usernames based on user page sockpuppet tagging.
| Description | Enhances sockpuppet investigation pages with visual tags. |
|---|---|
| Author | Daniel Quinlan |
| Status | Beta |
| Updated | 22 November 2025 |
| Browsers | Firefox, Safari, Chrome |
| Skins | Vector |
| Source | SockTags.js |
Features
- Visual tags: User tags showing "M" (master) or "P" (puppet) with status color codes and tooltips.
- Fast and efficient: Skips IPs, avoids repeated queries, and tags users concurrently.
- Comprehensive display: Shows up to two tags per user with status and master information in tooltips, including alternate masters.
- Template redirects: Resolves all template redirects like {{sockmaster}} → {{sockpuppeteer}} with local caching of redirects.
- Customizable styling: Uses CSS classes for easy customization of tags.
Installation
To install the SockTags script, follow these steps:
- In your preferences, go to Preferences → Gadgets. At the bottom of the "Advanced" section, click the "Install scripts without having to manually edit JavaScript files (documentation)" checkbox, then click the "Save" button.
- Return to this page and click the blue "Install" button.
Alternatively, you can manually install it by adding the following code to your common.js file:
{{subst:iusc|User:Daniel Quinlan/Scripts/SockTags.js}}
Usage
The script automatically runs on Wikipedia:Sockpuppet investigations pages and adds tags based on user page sockpuppet tagging. Hover over any tag to see the account status and the master if specified. If an alternate master has been listed, both primary and alternate information will be displayed.
Default tags
Tagged users are marked with a monospace square: "M" for master and "P" for puppet, with background colors and title tooltips indicating the status.
| Status | Example |
|---|---|
| Banned | M |
| Blocked | P |
| Confirmed | P |
| Proven | P |
| Suspected | P |
| Unknown | P |
Custom tags
You can customize the user tags in your common.css page or a skin-specific stylesheet such as vector.css. Here's an example of styling the confirmed status with a green background:
.socktag-status-confirmed {
background-color: green !important;
}
Credits
This script is based on User:RoySmith/tag-check.js although it has been rewritten, so any issues should be attributed to me.