始皇,始皇,影响摸鱼了

看评论的时候能不能把顶部那个加大加粗的标题隐藏了,或者搞个设置可以开关,每次看贴子那个标题太醒目了

另外吐槽下,这个logo我差点找不到论坛

2 Likes

运营反馈深海

深海运营反馈

1 Like
document.querySelector('.header-title').style.visibility='hidden';

看能不能做个油猴

4 Likes

这个可以让你快速回到顶部

4 Likes

好主意

感谢,让我发现功能 :see_no_evil:

我也没留意到这个功能,我一般用右边的滚动条的

发现新大陆了吧

1 Like

是不是发现了

来了

// ==UserScript==
// @name         Disable Title Sticky Header
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  取消浏览Linux.do帖子时标题自动置顶显示
// @author       Your Name
// @match        https://forum.linux.do/*
// @icon         https://www.google.com/s2/favicons?domain=linux.do
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // 在页面加载完成后执行
    window.addEventListener('load', function() {
        var observer = new MutationObserver(function() {
            var headerTitle = document.querySelector('.header-title');
            if (headerTitle) {
                headerTitle.style.display = 'none';
            }
        });

        // 监视页面内容的变化
        observer.observe(document.body, {
            childList: true,
            subtree: true
        });

        // 初始隐藏
        var initialHeaderTitle = document.querySelector('.header-title');
        if (initialHeaderTitle) {
            initialHeaderTitle.style.display = 'none';
        }
    });
})();
2 Likes

感谢,发现新功能

大水哥,你那个解决方案9, 是什么?

帮别人解决问题,别人选了你为方案,就有了

:tieba_013: :tieba_013: :tieba_013:
应该给大水哥一个专家

好家伙,这就整出来了,已使用