Outlook without Ads

Remove ads from Outlook

目前为 2015-09-07 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Outlook without Ads
  3. // @namespace feifeihang.info
  4. // @description Remove ads from Outlook
  5. // @include https://*.mail.live.com/*
  6. // @version 1
  7. // @grant none
  8. // ==/UserScript==
  9. (function (window, document, undefined) {
  10. var style = document.createElement('style');
  11. style.innerHTML = '.WithRightRail {right: 0 !important;}' +
  12. ' #RightRailContainer {display: none !important;}';
  13. document.head.appendChild(style);
  14. }) (this, this.document);