WhatsApp Web Client - Disable leave/reload dialog

Simply disables the window.onbeforeunload handler by setting it to null

  1. // ==UserScript==
  2. // @name WhatsApp Web Client - Disable leave/reload dialog
  3. // @description Simply disables the window.onbeforeunload handler by setting it to null
  4. // @namespace http://www.sveneppler.de/
  5. // @include https://web.whatsapp.com/*
  6. // @grant none
  7. // @run-at document-end
  8. // @version 1.0
  9. // ==/UserScript==
  10. //
  11. // Delay the execution by 5 seconds
  12. window.setTimeout(function() {
  13. window.onbeforeunload = null;
  14. console.log("'WhatsApp Web Client - Disable leave/reload dialog' loaded...");
  15. }, 5000);

QingJ © 2025

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