Created
January 3, 2022 11:50
-
-
Save CatalinPlesu/6c272dc7bb384085e97f3165d30d1f11 to your computer and use it in GitHub Desktop.
Will disable side panels and make the main chat full screen \n ctrl-k still works
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // discord script to collapse bars but now wont make the changell view bigger :( | |
| (()=>{ | |
| function swap(v) { | |
| switch(v) { | |
| case "collapse": | |
| return "visible" | |
| default: | |
| return "collapse" | |
| } | |
| } | |
| function chat_fullscreen(sidebar, chat, members) { | |
| console.log(chat) | |
| switch(sidebar) { | |
| case "collapse": | |
| members.style.position = "absolute"; | |
| chat.style.position = "absolute"; | |
| chat.style.top = "0px"; | |
| chat.style.bottom = "0px"; | |
| chat.style.left = "0px"; | |
| chat.style.right = "0px"; | |
| break; | |
| default: | |
| chat.style.position = "relative"; | |
| members.style.position = "relative"; | |
| } | |
| } | |
| var sidebar = document.getElementsByClassName("sidebar-2K8pFh")[0]; | |
| sidebar.style.visibility=swap(sidebar.style.visibility); | |
| var memeber_list = document.getElementsByClassName("membersWrap-2h-GB4 hiddenMembers-2dcs_q")[0]; | |
| if (memeber_list) | |
| memeber_list.style.visibility=swap(memeber_list.style.visibility); | |
| var chat = document.getElementsByClassName("chat-3bRxxu")[0]; | |
| chat = chat_fullscreen(sidebar.style.visibility, chat, memeber_list); | |
| })() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment