这是隐藏知乎标题的,供参考下。
```
// ==UserScript==
// @
name         ZhiHu
// @
namespace    http://tampermonkey.net/// @
version      2024-08-14
// @
description  try to take over the world!
// @
author       You
// @
match        https://www.zhihu.com/question/*// @
icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @
grant        none
// @
require      https://code.jquery.com/jquery-3.7.1.min.js// ==/UserScript==
/* globals jQuery, $, waitForKeyElements */
(function() {
    'use strict';
    $(window).scroll(function() {
        if($('.QuestionHeader-title').length) {
            $('.QuestionHeader-title').css('display', 'none');
        }
    });
})();
```