Close useless tabs
目前為
// ==UserScript==
// @name Close useless tabs in 163 mail
// @namespace https://github.com/zklhp
// @icon https://mail.163.com/favicon.ico
// @version 3.1.0
// @description Close useless tabs
// @homepageURL https://gist.github.com/zklhp/c1a358f026358786bef58b49f65d8333
// @author Chris Zheng <https://chriszheng.science/>
// @match *://mail.163.com/*
// ==/UserScript==
/* jshint esversion: 10 */
(() => {
var to_close = ["#_mail_link_4_125", "#_mail_link_3_122"];
for (let x of to_close) {
try {
document.querySelector(x).click();
} catch {}
}
})();