Voat Width Fix

Makes Voat use entire screen

  1. // ==UserScript==
  2. // @name Voat Width Fix
  3. // @namespace Kaori
  4. // @include https://voat.co/v/*
  5. // @grant none
  6. // @description Makes Voat use entire screen
  7. // @version 0.0.1.20150212014746
  8. // ==/UserScript==
  9.  
  10. (function()
  11. {
  12.  
  13. var x = document.getElementById("container");
  14. if (x)
  15. x.style["max-width"] = "100%";
  16.  
  17. })();