Change all GitHub repository and gist pages to be full width and dynamically sized.
当前为
"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);
})();