Greasy Fork is available in English.
Redirects FreeBuf mobile URLs to desktop URLs
当前为
// ==UserScript==
// @name FreeBuf URL Redirect
// @namespace https://m.freebuf.com/
// @version 0.1
// @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.', '');
// Redirect to the new URL
window.location.href = newURL;
})();