您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
随便试下
// ==UserScript== // @name 修复手机浏览器上PC版百度贴吧bug // @namespace http://tampermonkey.net/ // @version 0.0.5 // @description 随便试下 // @author shitianshiwa // @include http*://tieba.baidu.com/p/* // @include http*://tieba.baidu.com/f?* // @grant GM_registerMenuCommand // @run-at document-start // @license WTFPL // ==/UserScript== //用try-catch错误处理代替判断链接,只有贴吧主页有展开置顶按钮可以捕捉,贴子里面捉不到,返回为null //// @require http://code.jquery.com/jquery-1.11.0.min.js (function() { 'use strict'; // 模拟常见桌面版 UA(Windows Chrome) const desktopUA = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"; // 覆盖 UA Object.defineProperty(navigator, "userAgent", { get: () => desktopUA }); Object.defineProperty(navigator, "appVersion", { get: () => desktopUA }); Object.defineProperty(navigator, "platform", { get: () => "Win32" }); Object.defineProperty(navigator, "vendor", { get: () => "Google Inc." }); var $ = unsafeWindow.jQuery; // @grant 不能为none,否则不能用 //var $ = window.jQuery; //捕捉class用.,id对象用#?,$=document.getElementById? window.onload = function () { let a = $(".old_style_wrapper");// getby class name let b = document.getElementById("ueditor_replace"); if (b != null) { b.setAttribute("contenteditable", "true"); b.classList.add("edui-body-container"); } }; })();