Shopee URL Cleaner

Clean Shopee URL

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

Bạn sẽ cần cài đặt một tiện ích mở rộng như Tampermonkey hoặc Violentmonkey để cài đặt kịch bản này.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Shopee URL Cleaner
// @version      1.0
// @description  Clean Shopee URL
// @icon         https://www.google.com/s2/favicons?domain=shopee.tw
// @icon64       https://www.google.com/s2/favicons?domain=shopee.tw&sz=64
// @source       https://github.com/YuerLee/userscript/raw/main/scripts/shopee-url-cleaner.user.js
// @author       Yuer Lee
// @license      MIT
// @match        https://shopee.tw/*
// @run-at       document-end
// @grant        none
// @namespace https://greasyfork.org/users/1407758
// ==/UserScript==

function cleanUrl() {
  const match = window.location.href.match(/-i\.(\d+)\.(\d+)/);

  if (!match) {
    return;
  }

  const simplyPath = `product/${match[1]}/${match[2]}`;

  window.history.replaceState(null, '', simplyPath);
}

function throttle(fn, delay = 500) {
  let timer = null;

  return (...args) => {
    if (timer) {
      return;
    }

    fn(...args);

    timer = setTimeout(() => {
      timer = null;
    }, delay);
  };
}

new MutationObserver(throttle(cleanUrl)).observe(document, {
  subtree: true,
  childList: true,
});