Close useless tabs in 163 mail

Close useless tabs

目前为 2019-08-15 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Close useless tabs in 163 mail
  3. // @namespace https://github.com/zklhp
  4. // @icon https://mail.163.com/favicon.ico
  5. // @version 1.0.0
  6. // @description Close useless tabs
  7. // @homepageURL https://gist.github.com/zklhp/c1a358f026358786bef58b49f65d8333
  8. // @author Chris Zheng <https://chriszheng.science/>
  9. // @grant unsafeWindow
  10. // @match *://mail.163.com/*
  11. // ==/UserScript==
  12.  
  13. /*jshint esversion: 6 */
  14. (() => {
  15. unsafeWindow.$('a#_mail_link_0_7').click();
  16. unsafeWindow.$('a#_mail_link_1_12').click();
  17. })();