您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Zhihu free read, no login required
// ==UserScript== // @name Zhihu free read // @name:zh-CN 知乎无障碍阅读 // @description Zhihu free read, no login required // @description:zh-cn 知乎无障碍阅读免登陆 // @version 1.0 // @author Anc // @include *://*zhihu.com/* // @grant none // @namespace https://gf.qytechs.cn/users/61607 // ==/UserScript== (function() { 'use strict'; // 自动跳转到指定的网址 if (window.location.href.includes("www.zhihu.com/question/")) { var newUrl = window.location.href.replace("www.zhihu.com/question/", "www.zhihu.com/aria/question/"); console.log('redirect to', newUrl); window.location.href = newUrl; } // 等待页面加载完成后执行隐藏元素和缩放内容的操作 window.onload = function() { // 隐藏id为toolbarHtml的元素 var toolbar = document.getElementById("toolbarHtml"); if (toolbar) { toolbar.style.display = "none"; // 缩放页面内容到70% document.body.style.zoom = "70%"; } }; })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址