Greasy Fork is available in English.

eBonus.gg Pro

Auto click Next the video and play next.

// ==UserScript==
// @name         eBonus.gg Pro
// @namespace    BEAN
// @version      1.1
// @description  Auto click Next the video and play next.
// @author       BEAN
// @match        https://ebonus.gg/earn-coins/watch/lol
// @grant        none
// ==/UserScript==
 
setInterval(function() {
                  window.location.reload();
                }, 170000);
 
$(document).ready(function(){
    var coinsclicker = setInterval(function() {
        ClickNext();
        ClickOnBubble();
    }, 1000);
 
    window.ClickNext = function(){
        if ($(".coins_popup").length > 0) {
            console.log("clicked");
            $(".coins_popup").click();
        }
    };
    window.ClickOnBubble = function(){
        if ($(".sweet-alert.showSweetAlert.visible").length > 0) {
            console.log("clicked");
            $(".confirm").click();
        }
    };
});