discord.com

2024/2/18 02:37:56

目前为 2024-02-17 提交的版本。查看 最新版本

// ==UserScript==
// @name        discord.com
// @namespace   Violentmonkey Scripts
// @match       https://discord.com/channels/@me/*
// @grant       none
// @version     1.0
// @author      ligg
// @description 2024/2/18 02:37:56
// ==/UserScript==

(function(){
  function set_lineheight(){
    //
    var divs = document.querySelectorAll('main div');
    // 遍历所有获取到的 div 元素
    divs.forEach(function(div) {
  // 设置行高为 34px
      div.style.lineHeight = '2em';
    });
}

  setTimeout(set_lineheight, 5000);
})()


QingJ © 2025

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