// ==UserScript== // @name 汇通网 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 调整网页布局,手动复制。 // @author 陈庚 // @match http://kx.fx678.com/ // @grant none // @require http://cdn.bootcss.com/jquery/1.8.3/jquery.min.js // @downloadURL none // ==/UserScript== (function () { 'use strict'; $(".body_zb").find("li.body_zb_li").find("div.zb_word").find("[href]").each(function(){ //alert($(this).find("a").attr("href")); $(this).prepend("
汇通网
"); $(this).append("
http://kx.fx678.com"+$(this).attr("href")+"
"); $(this).removeAttr("href"); // }); })();