Vanguardbun loader remover

A simple javascript/jquery code to remove the loader and changing the display of loader to none

  1. // ==UserScript==
  2. // @name Vanguardbun loader remover
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description A simple javascript/jquery code to remove the loader and changing the display of loader to none
  6. // @author Root Android and Ethical Hacker
  7. // @match https://vanguardbun.com/*
  8. // @grant none
  9. // @require http://code.jquery.com/jquery-3.4.1.min.js
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Your code here...
  16. document.getElementById('pageloader').style.display = "none";
  17. $('#pageloader').css('display','none');
  18. })();