Normal G-mail Inbox

Change that useless side-bar back to a normal list.

  1. // ==UserScript==
  2. // @name Normal G-mail Inbox
  3. // @version 1.1
  4. // @description Change that useless side-bar back to a normal list.
  5. // @match https://mail.google.com/*
  6. // @icon https://www.google.com/s2/favicons?sz=64&domain=google.com
  7. // @grant none
  8. // @license MIT
  9. // @namespace Change G-mail Inbox back to normal automatically
  10. // ==/UserScript==
  11. const checkElements = setInterval(function () {
  12. if (document.getElementById('loading').style !== null) {
  13. document.getElementsByClassName('no')[1].children[0].className = 'nh oy8Mbf nn aeN bbZ bym';
  14. clearInterval(checkElements);
  15. }
  16. }, 500);