Warning: fopen(/www/sites/update.greasyfork.icu/index/store/temp/781f1f69f12440fd0358c7ebcecb9dc4.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript== // @license MIT // @name Automatically open the comments when opening post on 9gag // @namespace http://tampermonkey.net/ // @version 0.1 // @description This script automatically opens the comments when opening a post on 9gag. // @author Animeconnoiseur // @match https://9gag.com/gag/* // @icon https://www.google.com/s2/favicons?sz=64&domain=9gag.com // @grant none // @downloadURL https://update.greasyfork.icu/scripts/458036/Automatically%20open%20the%20comments%20when%20opening%20post%20on%209gag.user.js // @updateURL https://update.greasyfork.icu/scripts/458036/Automatically%20open%20the%20comments%20when%20opening%20post%20on%209gag.meta.js // ==/UserScript== (function() { const button = document.querySelector('.post-tab-bar__tab'); if (button) { button.click(); } })();