Chrome

Chrome 中移除Gmail 广告

将下面代码保存 Gmail.user.js 文件。然后拖入Chrome中,重新启动 Chrome 即可。 // @name GmailLite // @name GmailLite (function() { var css = “table.Bs.nH.iY td.Bu:last-child{position:absolute !important;top:-99999px !important;right:0 !important;}.nH.pp..ps.pY{display: none !important;}.mm{display: none}.mn{display: none}.mp{display: none}.toxOdd{display: none}.l6{display: none}.ma{display: none}”; if (typeof GM_addStyle != “undefined”) { GM_addStyle(css); } else if (typeof PRO_addStyle != “undefined”) { PRO_addStyle(css); } else if (typeof addStyle != “undefined”) { addStyle(css); } else [...]