在Gmail邮件列表中移除表情符号
当前为
// ==UserScript==
// @name Gmail - Remove emoji on mail list
// @name:zh-TW Gmail - 移除信件列表中的表情符號
// @name:zh-CN Gmail - 移除邮件列表中的表情符号
// @version 1.0.2
// @description Remove mail titles' emoji on Gmail.
// @description:zh-TW 在Gmail信件列表中移除表情符號
// @description:zh-CN 在Gmail邮件列表中移除表情符号
// @author BaconBao
// @namespace https://github.com/baconbao/
// @match https://mail.google.com/mail/*
// @icon https://ssl.gstatic.com/ui/v1/icons/mail/rfr/gmail.ico
// @grant GM_addStyle
// @compatible chrome
// @compatible firefox
// @compatible Tampermonkey
// @license MIT
// ==/UserScript==
GM_addStyle(`
tr[data-inboxsdk-thread-row] img[data-emoji] {
display: none;
}
`);