XianYu Search

Unlock XianYu Search

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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';
};