Guest User

anti-faggots script 2.0 enterprise edition

a guest
Dec 23rd, 2021
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         New Userscript
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.2
  5. // @description  try to take over the world!
  6. // @author       You
  7. // @match        https://wiki.archlinux.org/*
  8. // @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  9. // @grant        none
  10. // ==/UserScript==
  11.  
  12. (function (window) {
  13. //    var w = window.unsafeWindow || window;
  14.     var w=window
  15.     if (/https:\/\/wiki.archlinux.org/.test(w.location.href)) {
  16.         document.getElementsByClassName('mw-content-container')[0].style.maxWidth = 'none';
  17.         document.getElementsByClassName('mw-content-container')[0].style.marginLeft = '10em';
  18.         document.getElementsByClassName('mw-content-container')[1].style.maxWidth = 'none';
  19.         document.getElementsByClassName('mw-content-container')[1].style.marginLeft = '10em';
  20.         document.getElementsByClassName('mw-article-toolbar-container')[0].style.maxWidth = 'none';
  21.         document.getElementsByClassName('mw-article-toolbar-container')[0].marginLeft = '10em';
  22.         document.getElementById('mw-head').style.marginLeft='10em'
  23.         document.getElementsByClassName('mw-workspace-container')[0].style.maxWidth = 'none';
  24.         document.getElementsByClassName('mw-workspace-container')[1].style.maxWidth = 'none';
  25.         document.getElementsByClassName('mw-page-container')[0].style.maxWidth = 'none';
  26.         document.getElementById('mw-panel').style.webkitTransform='none'
  27.         document.getElementById('mw-panel').style.visibility='visible'
  28.         document.getElementById('mw-panel').style.opacity='unset'
  29.     }
  30. })(window);
Add Comment
Please, Sign In to add comment