HappyLeetcode

做一个快乐的工程师,增加字体大小

目前为 2021-09-16 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name HappyLeetcode
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description 做一个快乐的工程师,增加字体大小
  6. // @author Mouday
  7. // @match https://leetcode-cn.com/*
  8. // @grant none
  9. // @email pengshiyuyx@163.com
  10.  
  11. // @grant window.onload
  12. // @grant unsafeWindow
  13. // ==/UserScript==
  14.  
  15.  
  16. // 添加用户自定义样式
  17. function addUserStyle(){
  18. let style_ = '<style>.content__1Y2H{font-size: 16px}</style>';
  19. document.body.insertAdjacentHTML('beforeend', style_);
  20. }
  21.  
  22.  
  23. (function() {
  24. 'use strict';
  25. addUserStyle();
  26.  
  27. })();