将水木pc版转换为app效果
// ==UserScript==
// @name 水木社区web转APP
// @namespace https://www.newsmth.top/
// @version 1.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://fastly.jsdelivr.net/gh/beishuitang/[email protected]/dist/smth_to_app.iife.js'
sc.type = 'text/javascript';
document.querySelector('head').appendChild(sc);
})();