Github like reader

09/06/2020 10:00:00

Fra 09.06.2020. Se den seneste versjonen.

// ==UserScript==
// @name        Github like reader
// @namespace   Violentmonkey Scripts
// @match       https://github.com/*
// @grant       none
// @version     1.0
// @author      Maxw
// @description 09/06/2020 10:00:00
// ==/UserScript==

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