Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name Shut up Henry
  3. // @version 0.1
  4. // @description Silences Henry
  5. // @author Lebareslep
  6. // @include https://*.the-west.*/game.php*
  7. // @include https://*.the-west.com.*/game.php*
  8. // @include https://*.tw.innogames.*/game.php*
  9. // @exclude https://classic.the-west.net*
  10. // @grant none
  11. // ==/UserScript==
  12. (function() {
  13.   var sheet=document.createElement('style');
  14.   sheet.innerHTML = ".from_system {display: none}";
  15.   document.body.appendChild(sheet);
  16. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement