您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
objection lol气泡字体修复
// ==UserScript== // @name objection.lol气泡字体修复 // @namespace http://tampermonkey.net/ // @version 9999999999999999999 // @description objection lol气泡字体修复 // @author You // @match https://objection.lol/* // @icon https://www.google.com/s2/favicons?sz=64&domain=objection.lol // @grant none // @license MIT // ==/UserScript== (function() { // Your custom CSS const customCSS = ` .chat-box-text[data-v-bb1dfb19] { font-family: 方正兰亭黑简体; font-weight: lighter; margin-top: 8px; letter-spacing: 2px; line-height: 46px; } .name-plate-text[data-v-bb1dfb19] { font-family: 方正宋黑简体 !important; top: 63.9% !important; font-size: 23px !important; } `; // Function to add the CSS function addCustomCSS(css) { const style = document.createElement('style'); style.type = 'text/css'; style.appendChild(document.createTextNode(css)); document.head.appendChild(style); } // Add the CSS after the page has loaded window.addEventListener('load', () => { addCustomCSS(customCSS); }); })();