Microsoft 365 Copilot UI Adjuster

Adjusts the UI of Microsoft 365 Copilot by hiding the top bar for better visibility.

  1. // ==UserScript==
  2. // @name Microsoft 365 Copilot UI Adjuster
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.1.0
  5. // @description Adjusts the UI of Microsoft 365 Copilot by hiding the top bar for better visibility.
  6. // @author qianjunlang
  7. // @match *://copilot.cloud.microsoft/*
  8. // @icon https://res.cdn.office.net/officehub/officestartresources/microsoft_logo.svg
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. const style = document.createElement('style');
  18. style.textContent = `
  19. #root {
  20. transform: translateY(-68px) !important;
  21. min-height: calc(100vh + 68.33px);
  22. }
  23. `;
  24. document.head.appendChild(style);
  25.  
  26.  
  27. })();