Forces the selected font on Rule34Video.
// ==UserScript==
// @name Rule34Video Font Fix
// @namespace rule34video-font-fix
// @version 1.0.0
// @license MIT
// @description Forces the selected font on Rule34Video.
// @match https://rule34video.com/*
// @match https://www.rule34video.com/*
// @run-at document-start
// @grant GM_addStyle
// ==/UserScript==
GM_addStyle(`
*:not(svg):not(path):not(i):not([class*="icon" i]):not([class*="fa-"]):not([class*="vjs-"]) {
font-family:
var(--fr-font-family, "Microsoft YaHei"),
var(--fr-font-basefont, system-ui),
var(--fr-font-emoji, sans-serif) !important;
}
`);