🏠 Home 

Automatically open the comments when opening post on 9gag

This script automatically opens the comments when opening a post on 9gag.


Install this script?
// ==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
// ==/UserScript==
(function() {
const button = document.querySelector('.post-tab-bar__tab');
if (button) {
button.click();
}
})();