您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
strip outlook mail sidebar ads
当前为
// ==UserScript== // @name cleanLiveMailAds // @name:zh-CN outlook邮箱侧边栏去除 // @namespace http://tampermonkey.net/ // @version 0.1 // @description strip outlook mail sidebar ads // @description:zh-cn 去除outlook 邮箱侧边栏广告 // @author mooring // @match https://outlook.live.com/* // @icon https://www.google.com/s2/favicons?domain=live.com // @grant none // @run-at document-end // ==/UserScript== (function() { 'use strict'; let s = ` #app>div>div:nth-child(3)>div:nth-child(2)>div:nth-child(2), #app>div>div:nth-child(3)>div:nth-child(2)>div:nth-child(1)>div>div:last-child>div:last-child{ position: absolute; left: -999999px; width: 1px; } `; let st = document.createElement('style'); st.innerHTML = s; st.type = "text/css"; document.body.insertBefore(st, document.body.children[0]) })();