Auto click redirector

Skip menantisenja, pafpaf, gametime

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         Auto click redirector
// @namespace    https://greasyfork.org/en/users/158832
// @version      1.2
// @description  Skip menantisenja, pafpaf, gametime
// @author       Riztard
// @match        *menantisenja.com*
// @include      *menantisenja.com*
// @match        *pafpaf.info*
// @include      *pafpaf.info*
// @match        *gametime.web.id*
// @include      *gametime.web.id*
// @grant        none
// @icon         https://www.shareicon.net/download/2015/08/23/89640_forward.ico
// ==/UserScript==

if (window.top != window.self) //-- Don't run on frames or iframes
return;

(function() {
    'use strict';

	if (window.location.href.indexOf("menantisenja.com/?") != -1) {

		$('.sorasubmitss')[0].click();

    }

	else if (window.location.href.indexOf("menantisenja.com/2") != -1) {

		location.href = "javascript:void(changeLink());";

    }

	else if (window.location.href.indexOf("pafpaf") != -1) {

		window.location.href = $('#myy-buttons').attr('href');

    }

	else if (window.location.href.indexOf("gametime") != -1) {

		$('#klik')[0].click();
		window.location.href = $('#generate a').attr('href');

    }





})();