e(x)hentai panel resizer

resizes doujinshi panels to 90% of the browsers viewport so that they don't overflow the page

Stan na 06-06-2021. Zobacz najnowsza wersja.

// ==UserScript==
// @name         e(x)hentai panel resizer
// @version      0.1
// @description  resizes doujinshi panels to 90% of the browsers viewport so that they don't overflow the page
// @match        *://e-hentai.org/s/*
// @match        *://exhentai.org/s/*
// @grant        none
// @namespace https://greasyfork.org/users/780477
// ==/UserScript==

(function() {
    'use strict';

    const img = document.getElementById('img')
    img.style.width = ''
    img.style.height = '90vh'

})();