🐭️ MouseHunt - Hide Big Jaq's Big Spice Ad

Hides the Big Jaq banner above your journal.

  1. // ==UserScript==
  2. // @name 🐭️ MouseHunt - Hide Big Jaq's Big Spice Ad
  3. // @version 1.0.0
  4. // @description Hides the Big Jaq banner above your journal.
  5. // @license MIT
  6. // @author bradp
  7. // @namespace bradp
  8. // @match https://www.mousehuntgame.com/*
  9. // @icon https://brrad.com/mouse.png
  10. // @grant none
  11. // @run-at document-end
  12. // ==/UserScript==
  13. ((function () {
  14. 'use strict';
  15.  
  16. const addStyles = document.createElement('style');
  17. addStyles.innerHTML = '.campPage-campHUDBlock.MiniEventBigJackCampHUD { display: none; }';
  18. document.head.appendChild(addStyles);
  19. })());