// ==UserScript== // @name Close useless tabs in 163 mail // @namespace https://github.com/zklhp // @icon https://mail.163.com/favicon.ico // @version 1.0.0 // @description Close useless tabs // @homepageURL https://gist.github.com/zklhp/c1a358f026358786bef58b49f65d8333 // @author Chris Zheng // @grant unsafeWindow // @match *://mail.163.com/* // @downloadURL none // ==/UserScript== /*jshint esversion: 6 */ (() => { unsafeWindow.$('a#_mail_link_0_7').click(); unsafeWindow.$('a#_mail_link_1_12').click(); })();