Sleazy Fork is available in English.

南+ 自動跳轉桌面版網頁

南+ 自動使用底部桌面版按鈕的鏈結跳轉桌面版網頁

// ==UserScript==
// @name         南+ 自動跳轉桌面版網頁
// @namespace    https://greasyfork.org/scripts/474438
// @version      0.3
// @description  南+ 自動使用底部桌面版按鈕的鏈結跳轉桌面版網頁
// @author       fmnijk
// @match        *://*.east-plus.net/*
// @match        *://east-plus.net/*
// @match        *://*.south-plus.net/*
// @match        *://south-plus.net/*
// @match        *://*.south-plus.org/*
// @match        *://south-plus.org/*
// @match        *://*.white-plus.net/*
// @match        *://white-plus.net/*
// @match        *://*.north-plus.net/*
// @match        *://north-plus.net/*
// @match        *://*.level-plus.net/*
// @match        *://level-plus.net/*
// @match        *://*.soul-plus.net/*
// @match        *://soul-plus.net/*
// @match        *://*.snow-plus.net/*
// @match        *://snow-plus.net/*
// @match        *://*.spring-plus.net/*
// @match        *://spring-plus.net/*
// @match        *://*.summer-plus.net/*
// @match        *://summer-plus.net/*
// @match        *://*.blue-plus.net/*
// @match        *://blue-plus.net/*
// @match        *://*.imoutolove.me/*
// @match        *://imoutolove.me/*
// @icon         https://www.google.com/s2/favicons?domain=south-plus.net
// @grant        none
// @run-at       document-end
// @license      MIT
// ==/UserScript==

(function() {
    'use strict'

    if (!window.location.href.includes('/simple/')){
        return false;
    }

    f();
})();

function f() {
    //console.log("南+ 自動跳轉桌面版網頁 開始");

    document.querySelectorAll('body > div.container > center > a').forEach(function(element) {
        if (element.innerHTML.includes('桌面版')) {
            //console.log(element);
            window.location.href = element.href;
        }
    });

    //console.log("南+ 自動跳轉桌面版網頁 結束");
}