// ==UserScript== // @name 优化GitHub // @namespace http://tampermonkey.net/ // @version 0.3 // @description 优化GitHub显示 // @author Dongyi An // @match https://github.com/markyun/My-blog/blob/master/Front-end-Developer-Questions/Questions-and-Answers/README.md // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; const css = ` .container-lg { max-width: 1920px; } `; const textNode = document.createTextNode(css); const style = document.createElement('style'); style.appendChild(textNode); document.head.appendChild(style); })();