element.io-width

Removes all of the dead space in element.io.

目前为 2021-07-14 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name element.io-width
  3. // @version 0.4
  4. // @description Removes all of the dead space in element.io.
  5. // @match http://app.element.io/*
  6. // @match https://app.element.io/*
  7. // @match http://*.app.element.io/*
  8. // @match https://*.app.element.io/*
  9. // @namespace https://gf.qytechs.cn/users/217495-eric-toombs
  10. // @run-at document-idle
  11. // ==/UserScript==
  12.  
  13. style_tag = document.createElement('style');
  14. style_tag.innerHTML = `
  15. .mx_LeftPanel .mx_LeftPanel_GroupFilterPanelContainer {
  16. display: none;
  17. }
  18. .mx_EventTile_msgOption {
  19. width: 16px;
  20. }
  21. .mx_RoomView_MessageList {
  22. padding: px;
  23. }
  24. .mx_EventTile_content {
  25. margin-right: 0px;
  26. }
  27. `;
  28. document.getElementsByTagName('head')[0].append(style_tag);

QingJ © 2025

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