Stack Overflow / Stack Exchange Helper

A Stack Overflow / Stack Exchange Helper

  1. // ==UserScript==
  2. // @name Stack Overflow / Stack Exchange Helper
  3. // @namespace SanHuo
  4. // @version 0.1
  5. // @description A Stack Overflow / Stack Exchange Helper
  6. // @author cschengshen@gmail.com
  7. // @include https://*.stackexchange.com/*
  8. // @include https://*.stackoverflow.com/*
  9. // @include https://stackexchange.com/*
  10. // @include https://stackoverflow.com/*
  11. // @icon https://www.google.com/s2/favicons?domain=stackoverflow.com
  12. // @grant none
  13. // ==/UserScript==
  14.  
  15. (function() {
  16. 'use strict';
  17. let container = document.querySelector(".container");
  18. container.style.maxWidth = "100%";
  19. let content = document.querySelector("#content");
  20. content.style.maxWidth = "100%";
  21. })();