try to take over the world!
// ==UserScript==
// @name 微博登陆跳转
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://weibo.com/nguide/interests
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.location.href = window.location.host
// Your code here...
})();