// ==UserScript== // @name tenda login // @namespace http://tampermonkey.net/ // @version 2024-01-08 // @description try to take over the world! // @author You // @match http://192.168.0.1/login.html // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... setInterval(() => { let loginInput = document.querySelector("#login-password") let loginBtn = document.querySelector(".btn.btn-primary.btn-lg.btn-block") loginInput.value = "4KG4nC" loginBtn.click() }, 3000) })();