Greasy Fork镜像 还支持 简体中文。

Gmail Inbox Narrower

Limits the size of inbox to 1200px

// ==UserScript==
// @name         Gmail Inbox Narrower
// @description  Limits the size of inbox to 1200px
// @version      1.0
// @include      https://mail.google.com/*
// @namespace https://gf.qytechs.cn/users/153157
// ==/UserScript==

function GM_addStyle_from_string(str) {
    var node = document.createElement('style');
    node.innerHTML = str;
    document.body.appendChild(node);
}
GM_addStyle_from_string(`
  .nH.bkK.nn {
    width: 1200px !important;
    margin: 0 auto;
  }
`);

QingJ © 2025

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