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

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

  1. // ==UserScript==
  2. // @name 移除百度文库在选中文字后弹出的提示框
  3. // @description 百度文库中在页面上选中一段文字之后会自动弹出一个提示框,相当的烦人。本脚本就是用于移除这个提示框的。
  4. //
  5. // @namespace wwwlsmcom@outlook.com
  6. // @author Liu233w
  7. //
  8. // @include http://wenku.baidu.com/view/*
  9. // @include https://wenku.baidu.com/view/*
  10. // @version 1.1
  11. // @grant none
  12. //
  13. //
  14. // ==/UserScript==
  15.  
  16. window.onload = function () {
  17. var helper = document.getElementById('reader-helper-el');
  18. helper.innerHTML = '';
  19. };

QingJ © 2025

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