您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Close useless tabs
当前为
// ==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(); })();