Skip to content

Instantly share code, notes, and snippets.

@TolyanDimov
Last active March 19, 2024 14:53
Show Gist options
  • Save TolyanDimov/22b83b271e1c2ba33ea06b3b4867d557 to your computer and use it in GitHub Desktop.
Save TolyanDimov/22b83b271e1c2ba33ea06b3b4867d557 to your computer and use it in GitHub Desktop.
Enable full-screen mode for WhatsApp Web on larger screens
// ==UserScript==
// @name whatsapp-full-screen
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Enable full-screen mode for WhatsApp Web on larger screens
// @author tolyandimov
// @match https://web.whatsapp.com/
// @icon https://www.google.com/s2/favicons?sz=64&domain=whatsapp.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
var st=document.createElement("STYLE");
st.innerHTML=".app-wrapper-web ._aigs{top: 0 !important; width: 100% !important; max-width: 100% !important; height: 100% !important;}";
document.body.appendChild(st);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment