Skip to content

Instantly share code, notes, and snippets.

@8dcc
Created October 12, 2021 19:54
Show Gist options
  • Select an option

  • Save 8dcc/6c63a9cba23d7ed30cc84fc56378eb6b to your computer and use it in GitHub Desktop.

Select an option

Save 8dcc/6c63a9cba23d7ed30cc84fc56378eb6b to your computer and use it in GitHub Desktop.
Remove telegram chat list.
// ==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