fix width on telegram web app

08/8/2024, 8:44:59 PM

  1. // ==UserScript==
  2. // @name fix width on telegram web app
  3. // @namespace Violentmonkey Scripts
  4. // @match https://web.telegram.org/k/*
  5. // @grant none
  6. // @version 0.1
  7. // @author Siarhei Siniak
  8. // @license Unlicense
  9. // @description 08/8/2024, 8:44:59 PM
  10.  
  11. // @inject-into document
  12. // @noframes
  13. // ==/UserScript==
  14.  
  15. setTimeout(() => {
  16. let $$ = (s) => [document.querySelector(s)];
  17. $$('#page-chats')[0].setAttribute('style', 'max-width: unset !important;');
  18.  
  19. }, 3000)

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址