SRPG EZ Reader

Allows for an easier viewing experience on Stamina RPG websites.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name        SRPG EZ Reader
// @author      CERiNG
// @namespace   https://cering.dev/
// @match       https://srpg*.groovestats.com/*
// @match       https://ecs*.groovestats.com/*
// @grant       none
// @version     1.1.0
// @noframes
// @grant       GM_addStyle
// @run-at      document-end
// @description Allows for an easier viewing experience on Stamina RPG websites.
// @license     MIT
// @icon        https://srpg8.groovestats.com/img/favicon/apple-touch-icon.png
// ==/UserScript==

const style = `
    * {
        text-shadow: none !important;
    }

   .dataTable {
        font-size: 80%;
    }

    h1, h2, h3, h4, #ruleswrap h1,
    .questname, .questwrap .accBody h4,
    .questwrap .accHead h4, .accHead h4,
    .navbar-nav .dropdown-menu,
    .navbar-light .navbar-nav .nav-link,
    div.floatingAcc.accBody h6,
    div.floatingAcc.accBody #songlookup h6,
    div.floatingAcc.accBody #questoptions h6,
    #passrankstats div.floatingAcc.accBody h6,
    .questwrap span.bighead,
    #shopTop h4,
    #statblockWrap .accHead h4,
    #statblockWrap .vitals h5,
    #questblock .qactivedaily .daily-timer,
    .stattop .accStand h4,
    .subTableWrap .accBody h6,
    #statblockWrap .faction-panel h5,
    a.complist,
    a.reliclist,
    .subTableWrap a,
    #download a.unlocklink
    #statblockWrap h3, .nav-link, .nav-item {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
    }

    body, #resultdialog, #ruleswrap,
    .questwrap .accBody li, a.complist,
    .questwrap .accBody span,
    .questwrap .hint,
    button.qdownload,
    button#qdownloadallnew,
    button#qdownloadallfull,
    button#qfilterbtn,
    button.cdownload,
    button#cdownloadallnew,
    button#cdownloadallfull,
    button.dialogDownload,
    button#updateDlBtn,
    button#updatesettings,
    button#chillFilterBtn,
    .breakdownBlock,
    #relics .subTableWrap a {
        font-family: 'Barlow', sans-serif;
    }

    a.complist, #relics .subTableWrap a {
        font-size: 90%
    }

    #questblock .qactivedaily.questwrap {
        background-color: #0d150fe3;
    }

    body {
        background: #191426;
    }

`;
GM_addStyle(style);