outlook邮箱侧边栏去除

去除outlook 邮箱侧边栏广告

目前为 2021-05-24 提交的版本。查看 最新版本

// ==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])
})();