讨论 » 创建请求

Script creation: Auto-hide or hide Gmail search bar

§
发表于:2020-03-03
编辑于:2020-03-03

Script creation: Auto-hide or hide Gmail search bar

This used to be a feature in Gmelius, but they've since "depreciated" that feature (thanks for asking customers what they wanted) so I'm looking for another option to do this. I've searched and it appears that there was a script that could do this on the old userscripts site.

Can anyone create a script to do this? I'd be eternally grateful.

Thank you!

Deleted user 368327
§
发表于:2020-03-06
woxxom管理员
§
发表于:2020-03-06
编辑于:2020-03-06

You can use any style manager like Stylus extension to add the following CSS:

form[role="search"] {
  display: none;
}

Or autoshow it when hovering the header:

form[role="search"] {
  opacity: 0;
  transition: opacity .25s .25s;
}
header:hover form[role="search"] {
  opacity: 1;
}

You can do it in a userscript as well:

// ==UserScript==
// @name        gmail autohide search
// @match       https://mail.google.com/*
// @grant       GM_addStyle
// ==/UserScript==

GM_addStyle(`
form[role="search"] {
  opacity: 0;
  transition: opacity .25s .25s;
}
header:hover form[role="search"] {
  opacity: 1;
}
`);
§
发表于:2020-03-09

@wOxxOm

I was looking to hide the entire bar that contains search, but thank you!

woxxom管理员
§
发表于:2020-03-10

Well, you can adjust the selector using devtools so for example it would be .nH.w-asV instead of form[role="search"].

发表回复

登录以发表回复。