Дискусии » Заявки за създаване

Script creation: Auto-hide or hide Gmail search bar

§
Публикуван на: 03.03.2020
Редактиран на: 03.03.2020

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
§
Публикуван на: 06.03.2020
woxxomМод
§
Публикуван на: 06.03.2020
Редактиран на: 06.03.2020

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;
}
`);
§
Публикуван на: 09.03.2020

@wOxxOm

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

woxxomМод
§
Публикуван на: 10.03.2020

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

Публикувайте отговор

Влезте, за да публикувате отговор.

长期地址
遇到问题?请前往 GitHub 提 Issues。