Greasy Fork is available in English.
Enable dark mode on WebToons
// ==UserScript==
// @name WebToons Dark Mode
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Enable dark mode on WebToons
// @author NotACoder
// @match https://www.webtoons.com/*
// @license Mlt
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
// Add dark mode styles
GM_addStyle(`
body {
background-color: #1e1e1e !important;
color: #fff !important;
}
/* Add more styles for specific elements if needed */
`);
})();