Shopee URL Cleaner

Clean Shopee URL

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==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,
});