手机版淘宝京东转换PC浏览器版

将URL中的 new.m 替换为 item,detail 替换为 item

// ==UserScript==
// @name         手机版淘宝京东转换PC浏览器版
// @description  将URL中的 new.m 替换为 item,detail 替换为 item
// @match        https://*.taobao.com/*
// @grant        none
// @version 0.0.1.20231005020249
// @namespace https://greasyfork.org/users/2697
// ==/UserScript==

(function() {
    'use strict';

    var currentUrl = window.location.href;
    var replacedUrl = currentUrl.replace(/new\.m/g, 'item').replace(/detail/g, 'item');

    if (replacedUrl !== currentUrl) {
        window.location.href = replacedUrl;
    }
})();