将m.开头的移动端网址重定向到PC端
// ==UserScript==
// @name 移动版网页重定向到PC版
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 将m.开头的移动端网址重定向到PC端
// @license MIT
// @author Heavrnl
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 获取当前URL
const currentURL = window.location.href;
// 直接替换m.为空,保持URL其他部分不变
const pcURL = currentURL.replace(/^(https?:\/\/)m\./, '$1');
// 如果URL发生了变化,则进行重定向
if (pcURL !== currentURL) {
window.location.replace(pcURL);
}
})();