Remove gmail left app bar

In March 2022, Google added a new left column in gmail for apps. If you'd like to hide that column, use this script.

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Remove gmail left app bar
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  In March 2022, Google added a new left column in gmail for apps. If you'd like to hide that column, use this script.
// @author       You
// @match        https://mail.google.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
// @grant        none
// @license      MIT
// ==/UserScript==

function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}
/* Folder column: Make less wide. Previous setting was 256px. Please change the width to your liking. */
addGlobalStyle('.aqn { min-width: 156px!important; }');

/* Folder column: remove padding */
addGlobalStyle('.at9 { padding-right:0!important; padding-left:0!important; margin-right:0!important; margin-left:0!important; }');
addGlobalStyle('.aib { padding-left:0!important; margin-left:0!important; }');

/* Left app column: hide */
addGlobalStyle('div.aeN { display:none; }');

/* Left app column for Google Chat: show */
/* The column now shows up, but the names of the people are hidden. Ugh. */
addGlobalStyle('div.aeN.WR.anZ.nH.oy8Mbf.nn { display:block; }');