Large font github

Change all GitHub repository and gist pages to be full width and dynamically sized.

当前为 2024-05-09 提交的版本,查看 最新版本

"use strict";

// ==UserScript==
// @name        Large font github
// @description Change all GitHub repository and gist pages to be full width and dynamically sized.
// @version     0.0.2
// @namespace   http://tampermonkey.net/
// @license     MIT
// @match       https://github.com/*
// @match       https://gist.github.com/*
// ==/UserScript==

var styleSheet = "" +
".comment-body {" +
  "font-size: 13pt;" +
"}" +
".markdown-body {" +
  "font-size: 13pt;" +
"}" +
".TimelineItem-body {" +
  "font-size: 13pt;" +
"}" +
"body {" +
  "font-size: 13pt;" +
"}" +

"";

(function () {
  var s = document.createElement('style');
  s.type = "text/css";
  s.innerHTML = styleSheet;
  (document.head || document.documentElement).appendChild(s);
})();

QingJ © 2025

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