Fixit Menu Manga's

Сдвигает всплывающее меню в сторону. Обычно меню перерывает изображение манги.

目前为 2024-10-31 提交的版本。查看 最新版本

// ==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();
})();