跳过QQ邮箱跳转确认

try to take over the world!

As of 2017-09-26. See the latest version.

// ==UserScript==
// @name         跳过QQ邮箱跳转确认
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  try to take over the world!
// @author       xrr
// @include        https://mail.qq.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    if(window.location.href.indexOf('false')!==-1){
        setTimeout("goUrl(1)",1000);
    }
    // Your code here...
})();