Block Zhihu QuestionTitle

屏蔽网页版知乎查看答案时自动浮现的问题标题

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        Block Zhihu QuestionTitle
// @namespace   undefined
// @description 屏蔽网页版知乎查看答案时自动浮现的问题标题
// @include     *://www.zhihu.com/question/*
// @version     0.02
// @connect-src       www.zhihu.com
// ==/UserScript==

(function() {
    'use strict';
var titleBlock=document.getElementsByClassName("QuestionHeader-title")[0];
    titleBlock.style.display="none";
titleBlock=document.getElementsByClassName("HitQrcode")[0];
    titleBlock.style.display="none";
})();