skynet/userscripts/style-webtoons.js

32 lines
710 B
JavaScript

// ==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;
border: 1px solid #ccc;
}`);
})();