您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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);