Remove Url SEO Parameters

Remove Redundant Url SEO Parameters

目前為 2019-09-09 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Remove Url SEO Parameters
// @namespace    https://github.com/livinginpurple
// @version      2019.09.09.21
// @description  Remove Redundant Url SEO Parameters
// @author       livinginpurple
// @match        http://*.pixnet.net/*
// @match        https://*.pixnet.net/*
// @match        http://blog.xuite.net/*
// @match        https://blog.xuite.net/*
// @match        http://*.techbang.com/posts/*
// @match        https://*.techbang.com/posts/*
// @match        https://*.dcard.tw/*
// @match        https://*.inside.com.tw/*
// @run-at       document-start
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    console.log(GM_info.script.name + " is loading.");
    // 修改網址,且不留下歷史紀錄
    window.history.replaceState({},
        window.title,
        window.location.href.split('-')[0]
    );
    console.log(GM_info.script.name + " is running.");
})(document);

QingJ © 2025

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