有两个办法继续在web版搜索。

第一个:直接拼接url。
https://s.2.taobao.com/list/list.htm?q=关键字

第二个:写一段js把隐藏的表单加回来。

// ==UserScript==
// @name         闲鱼显示搜索
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  让闲鱼显示搜索框,去掉了一些广告。
// @author       You
// @match        https://s.2.taobao.com/*
// @match        https://2.taobao.com/*
// @require      http://cdn.bootcss.com/jquery/1.8.3/jquery.min.js
// @grant        none
// ==/UserScript==
(function(){
    $(document).ready(function(){
        //显示搜索框
        $('#J_IdleHeader').append('<div class="idle-search">'+
            '  <form method="get" action="//s.2.taobao.com/list/list.htm" name="search" target="_top">'+
            '    <input class="input-search" id="J_HeaderSearchQuery" name="q" type="text" value="" placeholder="搜闲鱼" />'+
            '    <input type="hidden" name="search_type" value="item" autocomplete="off" />'+
            '    <input type="hidden" name="app" value="shopsearch" autocomplete="off" />'+
            '    <button class="btn-search" type="submit"><i class="iconfont">&#xe602;</i><span class="search-img"></span></button>'+
            '  </form>'+
            '</div>');
        //去掉碍事的
        $.each(['download-layer','mau-guide','idle-footer','xy-guide'],function(index,value){
            $('.' + value).remove();
        });
        $.each(['guarantee'],function(index,value){
            $('#' + value).remove();
        });
        $('#J_Message').find('img').each(function(){
            $(this).remove();
            return false;
        });
    });
})();

如果你安装了chrome的油猴扩展直接保存上面的代码,或者进入下面的链接安装就可以了。
没怎么测试过。。。
https://greasyfork.org/zh-CN/scripts/32784-闲鱼显示搜索

最后修改:2021 年 02 月 10 日
如果觉得我的文章对你有用,请随意赞赏