Disables the on-click hyperlink on forum usernames, so you can copy paste user ID's without accidentally linking it instead.
DAPPERVOLK Disable forum username hyperlink by skeithh
Details
Authorskeithh
LicenseOpen Source
CategoryDappervolk.com
Created
Updated
Size371 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
@-moz-document domain("dappervolk.com") {
/* ==UserStyle==
@name Dappervolk Remove Forum User Hyperlink
@namespace Dappervolk.com
@version 1.0.0
@description Removes the username hyperlink for easier copy pasting of ID
@author Skeithh
==/Userstyle==*/
.thread .post .post-user .user-name .user {
pointer-events: none;
}
}