Greasy Fork

Greasy Fork is available in English.

WhatsApp Web Full Screen

Disable margins and use all available screen space for chats on WhatsApp Web.

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

// ==UserScript==
// @name         WhatsApp Web Full Screen
// @description  Disable margins and use all available screen space for chats on WhatsApp Web.
// @version      1.1
// @author       https://github.com/z4dri05
// @supportURL   https://github.com/z4dri05/WhatsAppWebFullScreen
// @match        https://web.whatsapp.com/*
// @grant        GM_addStyle
// @run-at       document-start
// @license MIT
// @namespace http://greasyfork.icu/users/1256011
// ==/UserScript==
GM_addStyle(`
div[id="app"] > div > *, div[data-testid="status-v3-main-panel"] > div {
    top: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    height: 100% !important;
}

#wa-popovers-bucket {
    display: none !important;
}
`);