面试鸭浏览助手

面试鸭浏览助手,功能包含:解除刷题页的禁止选择,隐藏刷题页内与刷题无关的内容

  1. // ==UserScript==
  2. // @name 面试鸭浏览助手
  3. // @namespace
  4. // @include *://www.mianshiya.com/bank/*/question/*
  5. // @match *://www.mianshiya.com/bank/*/question/*
  6. // @version 0.1.1
  7. // @description 面试鸭浏览助手,功能包含:解除刷题页的禁止选择,隐藏刷题页内与刷题无关的内容
  8. // @author ymzhao
  9. // @namespace
  10. // @license MIT
  11. // @grant GM_addStyle
  12. // ==/UserScript==
  13. GM_addStyle(`
  14. /* 解除刷题页的禁止选择 */
  15. body {
  16. user-select: initial !important;
  17. }
  18. /* 隐藏header */
  19. .ant-pro-layout .ant-layout-header.ant-pro-layout-header,
  20. /* 隐藏header广栏告 */
  21. body>.ant-float-btn-group+div:not(#basicLayout),
  22. /* 隐藏右侧边栏除目录外的所有内容 .custom-affix>div>div>div:not(:first-child) */
  23. .custom-affix,
  24. /* 隐藏固定在右侧的按钮组 */
  25. :where(.css-m4timi).ant-float-btn-group-square-shadow,
  26. /* footer */
  27. .question-main>footer,
  28. /* 问题作者 */
  29. .question-main .best-answer-author
  30. {display:none !important;}
  31.  
  32. .site-layout-background>.content-space>.immersion-float-btn {bottom:30px !important}
  33. `);

QingJ © 2025

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