SRPG EZ Reader

Allows for an easier viewing experience on Stamina RPG websites.

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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);