WhatsApp Web Client - Disable leave/reload dialog

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

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

QingJ © 2025

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