Greasy Fork is available in English.

XianYu Search

Unlock XianYu Search

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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