disable the annoying "Confirm Navigation" notification when trying to refresh or close WeChat web version.
当前为
// ==UserScript==
// @name Disable WeChat Leave Confirmation
// @namespace http://tampermonkey.net/
// @version 0.1
// @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;
})();