Disable WeChat Leave Confirmation

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

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

  1. // ==UserScript==
  2. // @name Disable WeChat Leave Confirmation
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description disable the annoying "Confirm Navigation" notification when trying to refresh or close WeChat web version.
  6. // @author Mikkkee
  7. // @match https://web.wechat.com
  8. // @grant none
  9. // ==/UserScript==
  10. (function() {
  11. 'use strict';
  12. window.onbeforeunload = null;
  13. window.onunload = null;
  14. })();