Greasy Fork is available in English.

Github like reader

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

  1. // ==UserScript==
  2. // @name Github like reader
  3. // @namespace Violentmonkey Scripts
  4. // @match https://*.github.com/*
  5. // @grant none
  6. // @version 1.2
  7. // @author Maxw
  8. // @description Ajusta a página com a largura da tela automaticamente.
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var style = document.createElement('style');
  14. style.innerHTML = '.timeline-new-comment{max-width: 100%} .markdown-body{ font-size: 1.4em } .discussion-timeline{ width: 90% } .container-lg{max-width: 90%} .container-xl{max-width: 90%}';
  15. document.head.appendChild(style);
  16. })();