Changes StudyGo to use a different font for terms in exercises, along with removing the pronunciation button
StudyGo Upgrade by JJRobot25

Details
AuthorJJRobot25
LicenseMIT
Categorystudygo
Created
Updated
Code size897 B
Code checksum3be03efd
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Both the font change and the button removal can be disabled
Source code
/* ==UserStyle==
@name StudyGo Upgrade
@namespace github.com/JJRobot25
@version 1.0.0
@description Changes StudyGo to use a different font for terms in exercises, along with removing the pronounciation button
@author JJRobot25
@license MIT
@preprocessor stylus
@var checkbox changeFont "Change Font" 1
@var checkbox removeSoundButton "Remove Pronounciation Button" 1
==/UserStyle== */
@-moz-document url-prefix("https://studygo.com/nl/learn/exercise/") {
if changeFont {
.exercise-title .text {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 25px;
font-weight: 700;
}
}
if removeSoundButton {
.exercise-title .text {
margin-right: 0px;
}
.play-btn {
display: none;
}
}
}