// ==UserScript== // @name poe trade汉化版搜索时新窗口打开原版页面 // @namespace http://tampermonkey.net/ // @version 0.1.3 // @description poe trade汉化版搜索时新窗口打开原版页面同时把搜索按钮做成悬浮按钮 // @author wishayne // @match http://poe.dr3gg.com/ // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; //设置在新页面打开搜索结果 $('#search').attr('target', '_blank'); //把搜索按钮做成悬浮按钮 var search_div = $("div.large-2.large-offset-8.columns"); search_div.css('position', 'fixed'); search_div.css('top', '10px'); search_div.css('width', '7%'); })();