Outlook.com cleaner

Cleans Outlook.com interface (better ad-removal)

// ==UserScript==
// @name			Outlook.com cleaner
// @description		Cleans Outlook.com interface (better ad-removal)
// @author			Daniel Skowroński <[email protected]>
// @version			0.1
// @match			https://*.mail.live.com/*
//

// @namespace https://gf.qytechs.cn/users/10018
// ==/UserScript==

function addjQuery(callback) {
  var script = document.createElement("script");
  script.setAttribute("src", "//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js");
  script.addEventListener('load', function() {
    var script = document.createElement("script");
    script.textContent = "window.jQ=jQuery.noConflict(true);(" + callback.toString() + ")();";
    document.body.appendChild(script);
  }, false);
  document.body.appendChild(script);
}

function main() {
    jQuery( document ).ready(function() {
        jQuery(".ContentRight").css("right","0");
        jQuery("#RightRailContainer").css("display","none");
    });
}

addjQuery(main);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址