Created
October 12, 2021 19:54
-
-
Save 8dcc/6c63a9cba23d7ed30cc84fc56378eb6b to your computer and use it in GitHub Desktop.
Remove telegram chat list.
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
| // ==UserScript== | |
| // @name Hide bar telegram | |
| // @namespace Violentmonkey Scripts | |
| // @include *.telegram.org/* | |
| // @grant GM_addStyle | |
| // @run-at document-start | |
| // @author Null | |
| // ==/UserScript== | |
| GM_addStyle (` | |
| .ChatFolders, #LeftColumn-main, #LeftColumn { | |
| display: none !important; | |
| } | |
| #MiddleColumn { | |
| max-width: none !important; | |
| } | |
| `) | |
| console.log ("Deleted telegram chats..."); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment