// ==UserScript== // @name 闲鱼搜索框 // @namespace https://yougg.github.io/ // @version 1.0 // @description 恢复导航栏的大搜索框和列表栏的小搜索框 // @author yougg // @match https://2.taobao.com/* // @match https://s.2.taobao.com/* // @match https://trade.2.taobao.com/* // @grant none // @downloadURL none // ==/UserScript== (function(){ 'use strict'; // 添加顶部导航栏的大搜索框 var S = document.createElement("div"); S.innerHTML = ''; document.getElementById("J_IdleHeader").appendChild(S); // 显示列表页过滤栏的小搜索框 var s = document.getElementsByClassName('search-filters-block search-filters'); if (s.length > 0) { s[0].style.display = "initial"; } // 备份小搜索框源码,防马云删除! // '
' + // ' ' + // '
' + // ' ' + // '
' + // ' ' + // '
' })();