element.io-width

Hides useless elements in element.io.

От 13.07.2021. Виж последната версия.

// ==UserScript==
// @name         element.io-width
// @version      0.3
// @description  Hides useless elements in element.io.
// @match        http://app.element.io/*
// @match        https://app.element.io/*
// @match        http://*.app.element.io/*
// @match        https://*.app.element.io/*
// @namespace    https://greasyfork.org/users/217495-eric-toombs
// @run-at       document-idle
// ==/UserScript==

setTimeout(function() {
  document.getElementsByClassName(
    "mx_LeftPanel_GroupFilterPanelContainer"
  )[0].style.display = "none";
}, 10000)