// ==UserScript== // @name Автокликер Баллов Twitch // @name:en Autoclick Twitch Points // @version 0.2-Release // @description Автоматически нажимает на сундучок +50, удобный пасивный абуз (фарм) поинтов (баллов). // @description:en Automatically clicks on the chest +50, a convenient passive farm points. // @copyright 2019, MjKey | MjKey.ru // @author MjKey // @match https://www.twitch.tv/* // @match *://*.twitch.tv/* // @match *://twitch.tv/* // @grant none // @license MIT // @namespace https://greasyfork.org/users/519758 // @downloadURL none // ==/UserScript== //18.03.2020 - фикс для хрома и обход анклика твича. //19.04.2020 - Добавил рандомное время нажатия 2 - 7 секунд. (function () { 'use strict'; function pressButton() { var AutoPoint = document.querySelectorAll(".community-points-summary button"); if (AutoPoint.length > 1) { console.log("[АвтоКлик] Зафармленно!"); AutoPoint[1].click(); } timeClick(); } function timeClick() { setTimeout(function () { pressButton(); }, Math.random() * 1800 + 7200); } timeClick(); })();