解决微博字体过细 - weibo.com

2020/10/10 下午3:05:52

// ==UserScript==
// @name        解决微博字体过细 - weibo.com
// @namespace   Violentmonkey Scripts
// @match       https://weibo.com/*
// @grant       none
// @version     1.3
// @author      lincong1987
// @description 2020/10/10 下午3:05:52
// @require https://unpkg.com/[email protected]/dist/jquery.js
// @license      MIT
// ==/UserScript==


(function($){
  
  
  $("body").css({
    fontSize: "14px",
    fontFamily: '"Microsoft YaHei","WenQuanYi Micro Hei",sans-serif'
  });
  
  $("head").append(`
<style>


.WB_editor_iframe_new {
  height: auto !important;
}

.artical_add_box .btn_line {
  display: none !important;
}

</style>
`);
  
  
  
})($.noConflict(true));

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址