Speed Test (Automatic)

Autoclick en SpeedTest

当前为 2021-06-22 提交的版本,查看 最新版本

// ==UserScript==
// @name         Speed Test (Automatic)
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Autoclick en SpeedTest
// @author       You
// @match        https://www.speedtest.net/result/*
// @icon         https://www.google.com/s2/favicons?domain=speedtest.net
// @grant        none
// ==/UserScript==

(function() {
'use strict';


settimeout(function(){
document.getElementById("").click();
},10000);
})();