您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
移除Outlook侧边广告 自用分享 长期更新
// ==UserScript== // @name 移除Outlook侧边广告 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 移除Outlook侧边广告 自用分享 长期更新 // @author Ziu // @match https://outlook.live.com/mail/* // @icon https://gcore.jsdelivr.net/gh/ZiuChen/ZiuChen@main/avatar.jpg // @license MIT // @grant none // ==/UserScript== const selectors = ['.GssDD'] // .GssDD为侧栏广告Box的类名 动态变化 const style = document.createElement('style') style.innerHTML = selectors.join(',') + '{ display: none !important; }' document.body.appendChild(style)