您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
将水木pc版转换为mobile模式,在浏览器实现app效果
当前为
// ==UserScript== // @name newsmth_to_APP // @namespace https://www.newsmth.top/ // @version 0.5.1 // @description 将水木pc版转换为mobile模式,在浏览器实现app效果 // @author tiewuzi // @match https://www.newsmth.net/* // @license MIT // @run-at document-start // @icon https://www.newsmth.top/favicon.ico // @noframes // ==/UserScript== (function () { 'use strict'; if (window.newsmth_top_mark) { return; } else { window.newsmth_top_mark = true; } let sc = document.createElement('script'); sc.charset = 'UTF-8'; sc.src ='https://www.newsmth.top/js/newsmth.top.js'; sc.type = 'text/javascript'; document.querySelector('head').appendChild(sc); })();