Greasy Fork is available in English.

水木社区web转APP 测试版

将水木pc版转换为app效果

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         水木社区web转APP 测试版
// @namespace    https://www.newsmth.top/
// @version      1.0.1
// @description  将水木pc版转换为app效果
// @author       tiewuzi
// @match        https://www.newsmth.net/nForum/*
// @match        https://static.mysmth.net/*
// @match        https://static.newsmth.net/*
// @license      MIT
// @run-at       document-start
// @icon         https://www.newsmth.top/favicon.ico
// @noframes
// ==/UserScript==
 
(function () {
    'use strict';
    if (window.newsmth_to_app) {
        return;
    } else {
        window.newsmth_to_app = true;
    }
    let sc = document.createElement('script');
    sc.charset = 'UTF-8';
    sc.src = 'https://www.newsmth.top/js/smth_to_app.iife.js'
    sc.type = 'text/javascript';
    document.querySelector('head').appendChild(sc);
})();