added styling for webtoons

This commit is contained in:
Rudis Muiznieks 2023-07-01 14:58:28 -05:00
parent f776d5a2a1
commit 1351910f6b
Signed by: rudism
GPG Key ID: CABF2F86EF7884F9
1 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,30 @@
// ==UserScript==
// @name Style-Webtoons
// @namespace code.sitosis.com
// @version 1.0
// @description Style Webtoons
// @author rudism
// @match https://webtoons.com/*
// @match https://www.webtoons.com/*
// @grant none
// @run-at document-end
// ==/UserScript==
function injectStyle(css) {
var style = document.createElement('style');
style.innerHTML = css;
var body = document.getElementsByTagName('body');
if(body.length > 0) {
body[0].appendChild(style);
}
}
(function () {
'use strict';
injectStyle(`
.viewer_lst .viewer_img img._images {
max-width: 300px;
min-width: 300px;
height: auto;
}`);
})();