Button to hide messengers list of conversations
< 脚本Toggle Messenger Sidebar的反馈
Just what I needed
I play a text-based game in messenger, this really opens up the page making all buttons available without scrolling most of the time. You can easily toggle the infopanel on the right at the same time for even more space by adding in lines 3, 6 & 10:
$("#showHideButton").click(function(){ var convThreads = document.getElementsByClassName("_1enh")[0]; var infoPanel = document.getElementsByClassName("_4_j5")[0]; if(convThreads.style.display == 'none'){ convThreads.style.display = 'block'; infoPanel.style.display = 'block'; showHideButton.value = "Hide Sidebar"; }else { convThreads.style.display = 'none'; infoPanel.style.display = 'none'; showHideButton.value = "Show Sidebar"; }
登录(不可用)以发表回复。
土豆服务器,请按需使用
镜像地址随时可能被墙,建议加群获取最新地址
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址
Just what I needed
I play a text-based game in messenger, this really opens up the page making all buttons available without scrolling most of the time. You can easily toggle the infopanel on the right at the same time for even more space by adding in lines 3, 6 & 10: