京东页内跳转

京东在非商品详情页面打开超链接时在当前窗口显示,不打开新窗口,减少购物时打开的页面数量

目前为 2018-08-20 提交的版本。查看 最新版本

// ==UserScript==
// @name         京东页内跳转
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  京东在非商品详情页面打开超链接时在当前窗口显示,不打开新窗口,减少购物时打开的页面数量
// @author       Zkerhcy
// @include      *//*.jd.com/*
// @require      https://cdn.bootcss.com/jquery/2.2.4/jquery.min.js
// @grant        none
// ==/UserScript==

;
(function () {
  'use strict'
  $(function () {
    var url = window.location.host
    if (url.indexOf('item.jd.com') === -1) {
      // $('.nickname').removeAttr('target');
      $('a').each(function (index, element) {
        $(this).removeAttr('target')
      });
    }
  })
})()

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址