remove the zhihu title

将知乎的醒目标题移除掉!

  1. // ==UserScript==
  2. // @name remove the zhihu title
  3. // @namespace https://github.com/woodongwong/
  4. // @version 0.1
  5. // @description 将知乎的醒目标题移除掉!
  6. // @author woodong wong
  7. // @match https://www.zhihu.com/question/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. var pageHeader = window.document.getElementsByClassName('PageHeader');
  13. if (pageHeader.length > 0) {
  14. pageHeader[0].getElementsByClassName('QuestionHeader-title')[0].innerHTML = '';
  15. }
  16. })();

QingJ © 2025

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