Greasy Fork 支持简体中文。

ouo.io

Skip button automatycally

目前為 2020-10-07 提交的版本,檢視 最新版本

// ==UserScript==
// @name         ouo.io
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Skip button automatycally
// @author       You
// @match        https://ouo.io/*
// @grant        none
// ==/UserScript==

(function() {
'use strict';

document.getElementById("btn-main").click();
})();