Disable WeChat Leave Confirmation

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

当前为 2015-12-23 提交的版本,查看 最新版本

// ==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;  
})();