NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @namespace https://openuserjs.org/users/velja
// @name ViewComicFullScreen
// @description Showing comics in full width and disables click
// @copyright 2021, velja (https://openuserjs.org/users/velja)
// @license MIT
// @version 0.0.0
// @include https://viewcomics.me/*
// @grant none
// ==/UserScript==
// ==OpenUserJS==
// @author velja
// ==/OpenUserJS==
document.getElementsByClassName('chapter-left-ad').item(0).parentElement.remove();
document.getElementsByClassName('chapter-right-ad').item(0).parentElement.remove()
window.addEventListener('click', function(event) {
event.stopImmediatePropagation();
}, true);