Better github read

调整Github页面宽度及字体大小,以便更加适合阅读。

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         Better github read
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  调整Github页面宽度及字体大小,以便更加适合阅读。
// @author       High Jiang
// @match        https://github.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var style = document.createElement('style');
    style.innerHTML = '.markdown-body{ font-size: 1.4em } .repository-content{ width: 1080px } .discussion-timeline{ width: 1080px } .timeline-new-comment{max-width: 100%} ';
    document.head.appendChild(style);

    var items = document.querySelectorAll('#wiki-content, #discussion_bucket');
    for (var i = 0; i < items.length; i++) {
      items[i].style.width = "1320px";
    }
})();