// ==UserScript== // @name 京东商品图去水印,隐藏二维码和商品推荐 // @namespace https://www.jd.com // @version 0.1.1 // @description 商品详情信息居中,商品大图去水印,隐藏二维码,隐藏相关商品推荐,删除按钮边框虚线,隐藏搜索框推荐词 // @author AN drew // @run-at document-end // @match *://*.jd.com/* // @downloadURL none // ==/UserScript== (function() { 'use strict'; if(window.location.href=="https://order.jd.com/center/list.action"||window.location.href=="https://order.jd.com/center/list.action?search=0&d=1&s=4096") { window.location.href="https://order.jd.com/center/list.action?search=0&d=2&s=4096"; } $("a.service").attr("style","border: 0; border-top: 1px solid #fff; border-bottom: 1px solid #fff;"); $("a.feedback").attr("style","border: 0; border-top: 1px solid #fff; border-bottom: 1px solid #fff;"); $("a.backtop").attr("style","border: 0;border-top: 1px solid #fff;border-bottom: 1px solid #fff;"); $(".product-intro.clearfix").attr("style","display:flex;justify-content:center;"); var timer = setInterval(function(){ if($(".jdm-tbar-tab-top").length>0) { $(".jdm-tbar-tab-top").click(function(){ $(window).scrollTop(0); }) clearInterval(timer); } },100) setInterval(function() { if($(".bigimg").length>0 && $(".bigimg").attr("src").indexOf("/n0/") > -1) { $(".bigimg").attr("src", $(".bigimg").attr("src").replace("/n0/","/n12/")); } $(".zoomImg").each(function(){ if($(this).attr("src").indexOf("/n0/") > -1) $(this).attr("src", $(this).attr("src").replace("/n0/","/n12/")); }) $(".jdm-tbar-tab-top a").children().unwrap(); $("#J_promotional-top").hide(); $("#treasure").hide(); $("#J_fs_act_lk").hide(); $("#J_searchbg").text(""); $("#toolbar-qrcode").hide(); $(".jTdCode").hide(); $(".user_profit").hide(); $("#J_news").hide(); $("#hotwords").hide(); $(".track").hide(); $(".mobile_static").hide(); $("#shopRecSuit").hide(); $("#fittings").hide(); $("#pop-hot").hide(); $("#sp-new").hide(); $("#shop-similar-promotion").hide(); $(".purchase-op").hide(); $("#view-buy").hide(); $("#yuyue-reco").hide(); $("#view-view").hide(); $(".m.m-aside:not([class*='popbox'])").hide(); $(".m.m-content.hide").hide(); $("#cart-smart").hide(); $("#c-tabs-new").hide(); $(".smart-guide-bottom").hide(); },1); })();