您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically enters your E-Mail
// ==UserScript== // @name Mealmates E-Mail Fill // @namespace Violentmonkey Scripts // @match https://get.mealmates.de/ // @grant GM_registerMenuCommand // @version 1.2.0 // @author Der_Floh // @description Automatically enters your E-Mail // @license MIT // @icon https://get.mealmates.de/media/img/logo.png // @homepageURL https://gf.qytechs.cn/de/scripts/484966-mealmates-e-mail-fill // @supportURL https://gf.qytechs.cn/de/scripts/484966-mealmates-e-mail-fill/feedback // ==/UserScript== let email = localStorage.getItem("mealmatesemail"); if (email == null || email == undefined || email == "") email = enterEmail(); GM_registerMenuCommand('Change E-Mail', () => enterEmail(email)); window.addEventListener("load", () => { const emailElem = document.getElementById("email"); emailElem.value = email; const password = document.getElementById("password"); const disabled = password.hasAttribute("disabled"); if (disabled) document.body.querySelector('button[type="submit"]').click(); }); function enterEmail(currEmail) { if (currEmail == null || currEmail == undefined || currEmail == "") currEmail = "[email protected]"; const emailNew = prompt("Please enter your email:", currEmail); if (emailNew) localStorage.setItem("mealmatesemail", emailNew); return emailNew; }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址