Add a glow effect to your name (only visible to you) on Twitch!
Twitch Name Glow by skwurw

Details
Authorskwurw
LicenseNo License
Categorytwitch.tv
Created
Updated
Code size758 B
Code checksumc1ceb622
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
To configure, on any tab with Twitch open click the Stylus addon icon, then on the same line as "Twitch Name Glow" click the gear icon!
Source code
/* ==UserStyle==
@name Twitch Name Glow
@namespace github.com/openstyles/stylus
@version 1.0.1
@description Add a glow effect to your name (only visible to you) on Twitch! To configure, on any twitch page click the Stylus addon icon, then on the same line as "Twitch Name Glow" click the gear icon!
@author skwurw
@advanced text user-name "Twitch Username" "undefind"
@advanced color name-color "Name Color" #000
@advanced color shadow-color "Shadow Color" #fff0
==/UserStyle== */
@-moz-document domain("twitch.tv") {
[data-user='/*[[user-name]]*/'] .chat-line__username, [data-a-target="edit-display-name"] {
color: /*[[name-color]]*/ !important;
text-shadow: 0px 0px 10px /*[[shadow-color]]*/;
}
}