Randstuff.ru

Predictable number generation for Randstuff.ru (https://randstuff.ru/number/)

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

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.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Randstuff.ru
// @version      0.2
// @match        *://randstuff.ru/*
// @run-at       document-end
// @grant        none
// @description  Predictable number generation for Randstuff.ru (https://randstuff.ru/number/)
// @author       Kaimi
// @homepage     https://kaimi.io/2016/01/tampering-vk-contest-results/
// @namespace    https://greasyfork.org/users/228137
// @license      GPLv3
// ==/UserScript==

// Number which will be generated on target click
var desired_number = 31337;
var desired_click_number = 3;

var click_ctr = 0;

$.ajaxPrefilter
(
	function(options, originalOptions, jqXHR)
	{
		var originalSuccess = options.success;

		options.success = function (data)
		{
			click_ctr++;
 
			if(click_ctr == desired_click_number)
				data.number = desired_number;
 
			originalSuccess(data);
		};
	}
);