Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/2fe6a3376321638cfbabe316683888bf.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name 9gag Auto Comment Section
// @namespace http://tampermonkey.net/
// @version 0.4
// @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-tab-bar__tab");
var searchText = 'Comments';
var found;
for (var i = 0; i < commentElement.length; i++) {
if (commentElement[i].textContent.includes(searchText)) {
found = commentElement[i];
break;
}
}
found.click()
})();