Disable WeChat Confirmation upon Leaving

disable the annoying "Confirm Navigation" notification when trying to refresh or close WeChat web version.

// ==UserScript==
// @name Disable WeChat Confirmation upon Leaving
// @namespace http://tampermonkey.net/
// @version      0.11
// @description  disable the annoying "Confirm Navigation" notification when trying to refresh or close WeChat web version.
// @author       Mikkkee
// @match        https://web.wechat.com
// @grant        none
// ==/UserScript==
(function() {
    'use strict';
    window.onbeforeunload = null;
    window.onunload = null;  
})();

QingJ © 2025

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