Skip to content

Google - Remove annoying buttons by McStylish

Screenshot of Google - Remove annoying buttons

Details

AuthorMcStylish

LicenseMiT

CategoryGoogle

Created

Updated

Code size775 B

Code checksum374fe508

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Simply removes the annoying and useless smart suggestion buttons on Google search.

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;
    }
}

Reviews

No reviews yet.