Not a member of Pastebin yet?
                        Sign Up,
                        it unlocks many cool features!                    
                - // ==UserScript==
 - // @name New Userscript
 - // @namespace http://tampermonkey.net/
 - // @version 0.1
 - // @description try to take over the world!
 - // @author You
 - // @match https://wiki.archlinux.org/*
 - // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
 - // @grant none
 - // ==/UserScript==
 - (function (window) {
 - // var w = window.unsafeWindow || window;
 - var w=window
 - if (/https:\/\/wiki.archlinux.org/.test(w.location.href)) {
 - document.getElementsByClassName('mw-content-container')[0].style.maxWidth = 'none';
 - document.getElementsByClassName('mw-article-toolbar-container')[0].style.maxWidth = 'none';
 - }
 - })(window);
 
                    Add Comment                
                
                        Please, Sign In to add comment