Fullscreen Whatsapp Web

Make the Whatsapp Web interface occupy the whole viewport even on large screens (idea suggested by POPO7)

当前为 2024-02-01 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Fullscreen Whatsapp Web
  3. // @description Make the Whatsapp Web interface occupy the whole viewport even on large screens (idea suggested by POPO7)
  4. // @namespace StephenP
  5. // @match https://web.whatsapp.com/*
  6. // @grant none
  7. // @version 1.0
  8. // @author StephenP
  9. // @license AGPL-3.0
  10. // @description 30/1/2024, 20:24:15
  11. // ==/UserScript==
  12. var st=document.createElement("STYLE");
  13. st.innerHTML=".app-wrapper-web .two{top: 0 !important; width: 100% !important; max-width: 100% !important; height: 100% !important;}";
  14. document.body.appendChild(st);
  15.