您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Change all Github repository and gist pages to be full width and dynamically sized.
当前为
- "use strict";
- // ==UserScript==
- // @name Wide Github
- // @namespace https://github.com/xthexder/wide-github
- // @description Change all Github repository and gist pages to be full width and dynamically sized.
- // @author xthexder
- // @copyright 2013+, xthexder (https://github.com/xthexder)
- // @contributor Jason Frey (https://github.com/Fryguy)
- // @contributor Marti Martz (https://github.com/Martii)
- // @license MIT; https://raw.githubusercontent.com/xthexder/wide-github/master/LICENSE
- // @version 1.2.0-joey3
- // @icon https://raw.githubusercontent.com/xthexder/wide-github/master/icon.png
- // @homepageURL https://github.com/xthexder/wide-github
- // @supportURL https://github.com/xthexder/wide-github/issues
- // @include *github.com*
- // @grant none
- //// Added by Joey:
- // @run-at document-start
- // ==/UserScript==
- var styleSheet = "" +
- "header .container," +
- "header .container-lg {" +
- "width: auto !important;" +
- "margin-left: 20px !important;" +
- "margin-right: 20px !important;" +
- "min-width: 980px;" +
- "max-width: initial;" +
- "}" +
- "#js-repo-pjax-container .container {" +
- "width: auto !important;" +
- //"margin-left: 20px !important;" +
- //"margin-right: 20px !important;" +
- "min-width: 980px;" +
- // I use zoom 90% in Chrome. But that causes the left border of the file list to disappear, if I use an even max-width. So I have to use an odd max-width.
- "max-width: 1499px;" +
- "margin-left: auto !important;" +
- "margin-right: auto !important;" +
- "}" +
- ".full-width .container {" +
- "padding-left: auto !important;" +
- "padding-right: auto !important;" +
- "}" +
- // New PR split diff
- ".full-width .new-pr-form {" +
- "max-width: none !important;" +
- "}" +
- // Repository Issues
- "#js-repo-pjax-container .repository-content .discussion-timeline {" + // Issue body
- "margin-left: -220px;" +
- "padding-left: 220px;" +
- "width: 100% !important;" +
- "}" +
- ".repository-content .discussion-sidebar {" +
- "width: 200px !important;" +
- "}" +
- ".repository-content .timeline-new-comment {" + // New Issue / issue comment form
- "max-width: 100% !important;" +
- "}" +
- ".repository-content .inline-comments .comment-holder {" + // Diff / code comments
- "max-width: 960px !important;" +
- "}" +
- ".repository-content .inline-comments .inline-comment-form-container {" +
- "max-width: 960px !important;" +
- "}" +
- ".repository-content .inline-comments .inline-comment-form {" +
- "max-width: 960px !important;" +
- "}" +
- // Repository pulse page
- ".repository-content .authors-and-code .section {" + // Contributors bar graph
- "width: 50%;" +
- "height: 180px;" +
- "}" +
- ".repository-content .authors-and-code .section svg {" +
- "height: 180px;" +
- "}" +
- // Repository graph page
- ".repository-content .capped-card {" + // Graph cards on contributors / graph list
- "margin:10px 10px 0 0 !important;" +
- "}" +
- // Gists
- ".gist-content-wrapper .container {" +
- "width: auto !important;" +
- "margin-left: 20px !important;" +
- "margin-right: 20px !important;" +
- "min-width: 980px;" +
- "}" +
- "";
- (function () {
- var s = document.createElement('style');
- s.type = "text/css";
- s.innerHTML = styleSheet;
- (document.head || document.documentElement).appendChild(s);
- })();