WebBot to View 2 Sites Statically inputted

will be a bot and get you hits

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         WebBot to View 2 Sites Statically inputted
// @namespace    http://tampermonkey.net/
// @version      4.0
// @description  will be a bot and get you hits
// @author       Erik Toor
// @include      *
// @grant        none

// ==/UserScript==

            if (window.location.href === "https://www.webassigngenius.com/") { // set storage for site 
                    console.log('we are on one of the sites that was inputted to the script');
                    setTimeout(window.open("https://tindergeniuspro.com/"), 5000); 
                    setTimeout(window.close(), 5000); 
                    
            }
            

            if (window.location.href === "https://tindergeniuspro.com/") { // code that will run for the first site 
                    console.log('we are on one of the sites that was inputted to the script');
                    setTimeout(window.open("https://www.webassigngenius.com/"), 5000); 
                    setTimeout(window.close(), 5000); 

  

        }