移除百度文库在选中文字后弹出的提示框

百度文库中在页面上选中一段文字之后会自动弹出一个提示框,相当的烦人。本脚本就是用于移除这个提示框的。

// ==UserScript==
// @name        移除百度文库在选中文字后弹出的提示框
// @description 百度文库中在页面上选中一段文字之后会自动弹出一个提示框,相当的烦人。本脚本就是用于移除这个提示框的。
//
// @namespace   [email protected]
// @author      Liu233w
//
// @include     http://wenku.baidu.com/view/*
// @include     https://wenku.baidu.com/view/*
// @version     1.1
// @grant       none
//
//
// ==/UserScript==

window.onload = function () {
  var helper = document.getElementById('reader-helper-el');
  helper.innerHTML = '';
};

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址