Github Auto Ajuste

Ajusta a página com a largura da tela automaticamente.

Versão de: 12/06/2020. Veja: a última versão.

// ==UserScript==
// @name        Github Auto Ajuste
// @namespace   Violentmonkey Scripts
// @match       https://github.com/*
// @grant       none
// @version     1.0
// @author      Maxw
// @description Ajusta a página com a largura da tela automaticamente.
// ==/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);
})();
长期地址
遇到问题?请前往 GitHub 提 Issues。