🏠 Home 

Make Google Lyrics Copyable

To copy lyrics in Google Search


Installer dette script?
Installer som brugerstil?
/* ==UserStyle==
@name           Make Google Lyrics Copyable
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    To copy lyrics in Google Search
@author         CY Fung
@license MIT
==/UserStyle== */
@-moz-document domain("google.com") {
[data-async-context] [id*="lyrics"] div[jsname] div[data-lyricid]:only-of-type{
user-select: all !important;
touch-events: initial !important;
pointer-events: none !important;
}
[data-async-context] [id*="lyrics"] div[jsname] > div[class]:not([jsname]){
pointer-events:none !important;
}
}