您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
加粗百度和谷歌的搜索结果页字体
// ==UserScript== // @name 字体加粗 // @version 1.1 // @icon // @namespace FLScript // @description 加粗百度和谷歌的搜索结果页字体 // @author FL // @license GPL-3.0 // @supportURL // @include *://www.baidu.com/s* // @include *://www.baidu.com/baidu* // @include *://www.google.com/search* // @noframes // @run-at document-start // @grant none // @require https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js // ==/UserScript== ;(function () { let css = document.createElement('style'); css.type = 'text/css'; css.innerHTML="*{font-family:微软雅黑;font-weight:400!important;}a,h1,h2,h3,h4,h5,h6,b{font-weight:700!important;}.h1,.h2,.h3,.h4,.h5,.h6,{font-weight:400!important;}"; document.getElementsByTagName('head').item(0).appendChild(css); $('pre,code').css('cssText', 'font-weight:400 !important;font-family:Jetbrains Mono !important'); let body = document.getElementsByTagName('body')[0]; body.setAttribute('style','font-weight:400 !important'); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址