您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
百度文库屏幕上的广告和下载按钮把可读范围缩小到了1/2个屏幕。此脚本可帮你将可读范围扩大
// ==UserScript== // @name 扩大百度文库可读范围 // @namespace http://tampermonkey.net/ // @version 0.04 // @description 百度文库屏幕上的广告和下载按钮把可读范围缩小到了1/2个屏幕。此脚本可帮你将可读范围扩大 // @author SB // @match https://wenku.baidu.com/view/* // @match https://wenku.baidu.com/aggs/* // @icon https://www.google.com/s2/favicons?sz=64&domain=baidu.com // @grant none // ==/UserScript== (function() { 'use strict'; document.getElementsByTagName('link')[0].remove() document.getElementById('app-right').remove() //清理右侧广告并将阅读器下移 setTimeout(() => { document.getElementsByClassName("read-all")[0].click(); }, 5000) //5秒后展开全文 若不安装 https://greasyfork.org/scripts/449800 脚本,则会跳转开通会员界面 })();