NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Kissmanga Show Comments
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author Chief
// @license MIT
// @match https://kissmanga.com/Manga/*/*
// @grant none
// ==/UserScript==
(function () {
'use strict';
window.addEventListener('load', function () {
(document.getElementById('btnShowComments').click() && console.info("loaded comments")) || true;
}, false);
})();