// ==UserScript== // @name poe trade汉化版搜索时新窗口打开原版页面 // @namespace http://tampermonkey.net/ // @version 0.1 // @description poe trade汉化版搜索时新窗口打开原版页面同时清空关键字栏和词缀过滤栏 // @author wishayne // @match http://poe.dr3gg.com/ // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; $('#search').attr('target', '_blank'); // 搜索按钮 的点击事件 //清空关键字栏和词缀过滤栏. 若不想清空, 请自行删掉此后四行内容 即 $(...}); $("input.search.button").click(function(){ $('#name').val(""); $('.explicit-mods').empty(); }); })();