Greasy Fork is available in English.

1688链接精简

try to take over the world!

// ==UserScript==
// @name         1688链接精简
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       hendeliao
// @match        https://detail.1688.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    window.history.pushState({},0,window.location.href.split("?")[0]);
    
})();