Close useless tabs in 163 mail

Close useless tabs

目前為 2019-08-15 提交的版本,檢視 最新版本

// ==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 <https://chriszheng.science/>
// @grant         unsafeWindow
// @match         *://mail.163.com/*
// ==/UserScript==

/*jshint esversion: 6 */
(() => {
  unsafeWindow.$('a#_mail_link_0_7').click();
  unsafeWindow.$('a#_mail_link_1_12').click();
})();