XianYu Search

Unlock XianYu Search

Pada tanggal 06 Januari 2018. Lihat %(latest_version_link).

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @namespace   DJL
// @version     1.0.1.20180107
// @match       https://2.taobao.com/*
// @match       https://s.2.taobao.com/*
// @name        XianYu Search
// @name:zh-CN  闲鱼搜索
// @description:en Unlock XianYu Search
// @description:zh-CN 解除网页闲鱼搜索限制
// @description Unlock XianYu Search
// ==/UserScript==

//解除主页面上搜索框
Ele = document.getElementById('J_IdleHeader');
EleText = Ele.innerHTML.replace(/<!--/g,'').replace(/-->/,'');
Ele.innerHTML = EleText;

//解除搜索结果右上角搜索框
var url = document.domain;
if (url == 's.2.taobao.com'){
  document.getElementsByClassName('search-filters-block search-filters')[0].style.display='block';
};