Сдвигает всплывающее меню в сторону. Обычно меню перерывает изображение манги.
当前为
// ==UserScript==
// @name Fixit Menu Manga's
// @namespace
// @match https://remanga.org/manga/*
// @grant none
// @version 0.1
// @author JonFox
// @description Сдвигает всплывающее меню в сторону. Обычно меню перерывает изображение манги.
// @license
// @license MIT
// ==/UserScript==
(function() {
'use strict';
function adjustModalStyle() {
const modal = document.querySelector('.modal.modalPaper');
if (modal) {
modal.style.left = '78%'; // Меняйте под свой монитор сдвиг меню (Стандартное значение 60% на сайте)
}
}
const observer = new MutationObserver(adjustModalStyle);
observer.observe(document.body, { childList: true, subtree: true });
adjustModalStyle();
})();