This script makes sure telegram web to use full screen width by replacing styles. The script works with scripting utilities like TamperMonkey.
Click this link to install user script.
This script makes sure telegram web to use full screen width by replacing styles. The script works with scripting utilities like TamperMonkey.
Click this link to install user script.
// ==UserScript== | |
// @name Telegram Web Full Width | |
// @namespace http://tampermonkey.net/ | |
// @version 0.0.1 | |
// @description telegram web full width | |
// @author Manuel Mazzuola | |
// @match https://web.telegram.org/* | |
// @grant GM_addStyle | |
(function() { | |
'use strict'; | |
const selectors = ['.whole']; | |
const maxWidth = '{max-width: 100% !important}'; | |
GM_addStyle(selectors.join(',') + maxWidth); | |
})(); |