Disable WeChat Leave Confirmation

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

Versão de: 23/12/2015. Veja: a última versão.

// ==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;  
})();
长期地址
遇到问题?请前往 GitHub 提 Issues。