解决Google联想词自动上屏Bug

禁用Google搜索框的自动补全

// ==UserScript==
// @name         解决Google联想词自动上屏Bug
// @namespace    http://tampermonkey.net/
// @version      0.7
// @license MIT
// @match        https://www.google.com/search*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        GM_addStyle
// @description 禁用Google搜索框的自动补全
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle(`
    .logo ~ div ~ div > div ~ div > div ~ div > div ~ div ul { pointer-events:none; }
    `);
})();