Realtek Autofill Email

Automatically submits email form

  1. // ==UserScript==
  2. // @name Realtek Autofill Email
  3. // @description Automatically submits email form
  4. // @author Magic of Lolis <magicoflolis@gmail.com>
  5. // @version 0.2
  6. // @namespace https://github.com/magicoflolis/userscriptrepo/tree/master/RealtekAutofill#realtek-autofill-email-form
  7. // @homepageURL https://github.com/magicoflolis/userscriptrepo/tree/master/RealtekAutofill#realtek-autofill-email-form
  8. // @supportURL https://github.com/magicoflolis/userscriptrepo/issues/new
  9. // @match https://www.realtek.com/*/directly-download?downloadid=*
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. "use strict";
  14. (() => {
  15. let email = "magicuserscript@gmail.com", // Default: magicuserscript@gmail.com
  16. selector = document.querySelector(".rsform-input-box"),
  17. sumbit = document.getElementById('SubmitButton');
  18. selector.setAttribute("value", email);
  19. sumbit.form.submit();
  20. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址