FreeBuf URL Redirect

Redirects FreeBuf mobile URLs to desktop URLs

// ==UserScript==
// @name         FreeBuf URL Redirect
// @namespace    https://m.freebuf.com/
// @version      0.2
// @description  Redirects FreeBuf mobile URLs to desktop URLs
// @author       LANVNAL
// @match        https://m.freebuf.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=freebuf.com
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Get the current URL
    var currentURL = window.location.href;

    // Remove the 'm.' from the URL
    var newURL = currentURL.replace('m.', 'www.');

    // Redirect to the new URL
    window.location.href = newURL;
})();

QingJ © 2025

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