outlook microsoft 365 hide select text popup box

outlook microsoft 365 hide select txt popup box

当前为 2024-05-16 提交的版本,查看 最新版本

// ==UserScript==
// @name        outlook microsoft 365 hide select text popup box 
// @namespace   english
// @description      outlook microsoft 365 hide select txt popup box 
// @include     http*://*office365.com*
// @version     1.1
// @run-at document-end
// @grant       GM_addStyle
// @license MIT
// ==/UserScript==


// Main - CSS hides two classes - video add box, and call to action box under it. - also social media

 
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '          .ms-Callout-container{display:none;}          ';
document.getElementsByTagName('head')[0].appendChild(style);