Ich kann das nicht testen, aber der Anfang könnte so sein?
JavaScript
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 2025-06-07
// @description try to take over the world!
// @author You
// @match https:/fritz.box
// @match http:/fritz.box
// @icon none
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.getElementById('uiEntryname-input').value = 'Spam';
...
document.getElementById('uiNumbernew1-input').focus();
...
})();
Alles anzeigen
Sonst muss sich wohl mal ein Profi damit beschäftigen...