Simply removes the annoying and useless smart suggestion buttons on Google search.
Google - Remove annoying buttons by McStylish
Details
AuthorMcStylish
LicenseMiT
CategoryGoogle
Created
Updated
Size775 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Changelog
Version 1.0.2:
- Cleanup of redundant selectors
- Made Google Video button optional
Source code
/* ==UserStyle==
@name Remove smart suggestion buttons
@namespace Google search
@version 1.0.2
@description Simply removes the annoying and useless smart suggestion buttons on Google search.
@author McStylish
==/UserStyle== */
@-moz-document regexp("http[s]?:\/\/(?:www\.)?google\.\S{2,3}(?:\.\S{2,3})?\/search[\S]+") {
/* Get rid of useless "smart suggestion" buttons */
[href*="ictx="]
{
display: none !important;
}
/* Uncomment this if you want to remove Google Videos as well. */
/* [href*="tbm=vid"] {
display: none !important;
} */
/* Accidental search by voice clicks are annoying */
[aria-label="Search by voice"]
{
display: none !important;
}
}