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://greasyfork.org/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;
  }
`);