fixvalveshit

I want to feed someone to a xenomorph

  1. // ==UserScript==
  2. // @name fixvalveshit
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description I want to feed someone to a xenomorph
  6. // @author MrKleiner
  7. // @match https://developer.valvesoftware.com/wiki/*
  8. // @icon https://www.google.com/s2/favicons?domain=valvesoftware.com
  9. // @license MIT
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13.  
  14. document.querySelectorAll('#mw-content-text div[style]').forEach(function(userItem) {
  15. // if(userItem.style.overflow == 'auto')
  16. // {
  17. userItem.style.overflow = null;
  18. // }
  19. userItem.style.maxHeight = null;
  20. });