Gmail - 移除邮件列表中的emoji表情符号

在Gmail邮件列表中移除emoji表情符号

  1. // ==UserScript==
  2. // @name Gmail - Remove emoji on mail list
  3. // @name:zh-TW Gmail - 移除信件列表中的emoji表情符號
  4. // @name:zh-CN Gmail - 移除邮件列表中的emoji表情符号
  5. // @version 1.1.1
  6. // @description Remove emoji on the mail list of Gmail.
  7. // @description:zh-TW 在Gmail信件列表中移除emoji表情符號
  8. // @description:zh-CN 在Gmail邮件列表中移除emoji表情符号
  9. // @author BaconBao
  10. // @namespace https://github.com/baconbao/
  11. // @match https://mail.google.com/mail/*
  12. // @icon https://ssl.gstatic.com/ui/v1/icons/mail/rfr/gmail.ico
  13. // @grant GM_addStyle
  14. // @compatible chrome
  15. // @compatible edge
  16. // @compatible firefox
  17. // @compatible Tampermonkey
  18. // @license MIT
  19. // ==/UserScript==
  20.  
  21. GM_addStyle(`
  22. tr[jscontroller][jsmodel][jsaction] img[data-emoji] {
  23. display: none;
  24. }
  25. `);