您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes the dumb space-wasting layout used on displays wider than 1440px.
// ==UserScript== // @name WhatsApp like it should be: no whitespace! // @namespace https://itsad.am // @version 2.0.0 // @description Removes the dumb space-wasting layout used on displays wider than 1440px. // @author Adam W // @match https://web.whatsapp.com/ // @grant none // ==/UserScript== (function () { 'use strict'; let styles = ` div.app-wrapper-web:after{ display: none; } @media screen and (min-width: 1441px) { .app-wrapper-web > div:first-of-type { height: 100% !important; top: 0 !important; width: 100% !important; } html[dir] .app-wrapper-web > div:first-of-type { box-shadow: 0 1px 1px 0 rgba(var(--shadow-rgb),.06),0 2px 5px 0 rgba(var(--shadow-rgb),.2) !important; margin: 0 auto !important; } html[dir] .app-wrapper-web.safari-fix .h70RQ { border-radius: 0 !important; } } ` let styleSheet = document.createElement("style") styleSheet.type = "text/css" styleSheet.innerText = styles document.head.appendChild(styleSheet) })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址