去除贴吧搜索框自动选中

去除百度贴吧搜索框自动选中

// ==UserScript==
// @name         去除贴吧搜索框自动选中
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  去除百度贴吧搜索框自动选中
// @author       yzj957x
// @license MIT
// @match        *://tieba.baidu.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=jsons.cn
// @grant        https://imgsa.baidu.com/forum/pic/item/a6efce1b9d16fdfa6291460ab98f8c5495ee7b51.jpg
// ==/UserScript==

(function() {
    document.getElementById('wd1').select=null;
})();