知乎小工具

知乎标题自由隐藏与显示

// ==UserScript==
// @name         知乎小工具
// @namespace    gf.qytechs.cn
// @version      0.1
// @description  知乎标题自由隐藏与显示
// @author       codrwu
// @include      https://www.zhihu.com/question/*
// @icon         https://static.zhihu.com/static/favicon.ico
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.getElementsByClassName("QuestionHeader-title")[0].setAttribute("hidden","true");
    var button = document.createElement("input");
    button.setAttribute("type", "button");
    button.setAttribute("value", "显示标题");
    button.setAttribute("class", "Button FollowButton Button--primary Button--blue");
    button.addEventListener('click', function() {
        if(document.getElementsByClassName("QuestionHeader-title")[0].getAttribute("hidden")){
            document.getElementsByClassName("QuestionHeader-title")[0].removeAttribute("hidden");
            button.setAttribute("value", "隐藏标题");
        }else{
            document.getElementsByClassName("QuestionHeader-title")[0].setAttribute("hidden","true");
            button.setAttribute("value", "显示标题");
        }
    });
    var x = document.getElementsByClassName("QuestionHeader-content");
    x[0].appendChild(button);
})();

QingJ © 2025

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