Greasy Fork is available in English.

停止显示谷歌搜索下拉提示

try to take over the world!

// ==UserScript==
// @name         停止显示谷歌搜索下拉提示
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  try to take over the world!
// @author       www.litreily.top
// @include      https://www.google.com/*
// @include      https://www.google.com.hk/*
// @grant        none
// @require      http://code.jquery.com/jquery-1.11.0.min.js
// ==/UserScript==

(function() {
    'use strict';
    // for google search
    $("div[jscontroller='tg8oTe']").remove()

    // for bing search
    // $('div#sw_as').remove()
})();