ExHentai - Hide Comments

Hides entire comment section. Save screen space, less scrolling.

// ==UserScript==
// @name         ExHentai - Hide Comments
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Hides entire comment section. Save screen space, less scrolling. 
// @author       miwoj
// @match        https://exhentai.org/g/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var element = document.getElementById("cdiv");
    element.style.display = "none";
    // Your code here...
})();