link cleaner: Taobao

移除淘寶與天貓商品網址的追蹤碼

// ==UserScript==
// @name         link cleaner: Taobao
// @description  移除淘寶與天貓商品網址的追蹤碼
// @match        https://item.taobao.com/*
// @match        https://detail.tmall.com/*
// @grant        none
// @license      MIT
// @version 0.0.1.20230328050354
// @namespace https://gf.qytechs.cn/users/1044461
// ==/UserScript==

(function() {
    'use strict';
    const cU = window.location.href;
    const itemId = cU.match(/id=\d+(?=&|$)/)[0];
    const newUrl = cU.split('?')[0] + '?' + itemId;
    window.history.replaceState(null, '', newUrl);
})();

QingJ © 2025

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