// ==UserScript== // @name 9gag Auto Comment Section // @namespace http://tampermonkey.net/ // @version 0.5 // @description anarka84 // @license MIT // @author Marc // @match https://9gag.com/gag/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var commentElement = document.getElementsByClassName("post-comment"); commentElement[0].style.display = 'block'; })();