WebBot to View 2 Sites Statically inputted

will be a bot and get you hits

  1. // ==UserScript==
  2. // @name WebBot to View 2 Sites Statically inputted
  3. // @namespace http://tampermonkey.net/
  4. // @version 4.0
  5. // @description will be a bot and get you hits
  6. // @author Erik Toor
  7. // @include *
  8. // @grant none
  9.  
  10. // ==/UserScript==
  11.  
  12. if (window.location.href === "https://www.webassigngenius.com/") { // set storage for site
  13. console.log('we are on one of the sites that was inputted to the script');
  14. setTimeout(window.open("https://tindergeniuspro.com/"), 5000);
  15. setTimeout(window.close(), 5000);
  16. }
  17.  
  18. if (window.location.href === "https://tindergeniuspro.com/") { // code that will run for the first site
  19. console.log('we are on one of the sites that was inputted to the script');
  20. setTimeout(window.open("https://www.webassigngenius.com/"), 5000);
  21. setTimeout(window.close(), 5000);
  22.  
  23.  
  24. }
  25.