Redit Comment Form and Stickied Hider

Hides reddit comment form and stickied comments

// ==UserScript==
// @name	       Redit Comment Form and Stickied Hider
// @description        Hides reddit comment form and stickied comments
// @version            1.1
// @include            http*://www.reddit.com/**
// @namespace          https://gf.qytechs.cn/users/153157
// ==/UserScript==

function GM_addStyle_from_string(str) {
    var node = document.createElement('style');
    node.innerHTML = str;
    document.body.appendChild(node);
}

GM_addStyle_from_string(`
  .commentarea > .usertext, .stickied {
    display: none;
  }
`);

QingJ © 2025

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