Skip to content

StudyGo Upgrade by JJRobot25

Screenshot of StudyGo Upgrade

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

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

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;
        }
    }
}

Reviews

No reviews yet.