您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
In March 2022, Google added a new left column in gmail for apps. If you'd like to hide that column, use this script.
// ==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; }');
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址