No New! Alliance

Remove alliance new message alert

  1. // ==UserScript==
  2. // @name No New! Alliance
  3. // @description Remove alliance new message alert
  4. // @version 0.1
  5. // @author Talus
  6. // @namespace http://www.knightsradiant.pw/
  7. // @license GPL-3.0-or-later
  8. // @match https://politicsandwar.com/*
  9. // @grant none
  10. // @require https://code.jquery.com/jquery-3.6.0.min.js
  11. // ==/UserScript==
  12.  
  13. (function(){
  14. var $ = window.jQuery;
  15. $("span:contains('New!')")[0].remove();
  16. })();