即刻网页重定向到网页版Redirect m.okjike.com to web.okjike.com

Automatically redirects from m.okjike.com to web.okjike.com

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

// ==UserScript==
// @name         即刻网页重定向到网页版Redirect m.okjike.com to web.okjike.com
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Automatically redirects from m.okjike.com to web.okjike.com
// @author       You
// @match        https://m.okjike.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // 获取当前的URL
    let currentUrl = window.location.href;

    // 将 m.okjike.com 替换为 web.okjike.com
    let newUrl = currentUrl.replace('m.okjike.com', 'web.okjike.com').replace('/users/', '/u/');

    // 重定向到新的URL
    window.location.replace(newUrl);
})();