Anime News Network Layout Fix

Cleans up the Anime News Network homepage layout by moving/removing some elements and centering the main content for widescreen displays

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Anime News Network Layout Fix
// @namespace    https://greasyfork.org/en/scripts/530579-anime-news-network-layout-fix
// @version      1.1
// @description  Cleans up the Anime News Network homepage layout by moving/removing some elements and centering the main content for widescreen displays
// @author       Stuart Saddler
// @match        https://www.animenewsnetwork.com/*
// @license      MIT
// ==/UserScript==

(function () {
    'use strict';

    // Inject custom styles for layout cleanup and centering
    const style = document.createElement('style');
    style.textContent = `
        /* Center the middle-area container */
        .middle-area {
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
        }

        /* Set max-width for readability */
        #main {
            width: auto !important;
            max-width: 1800px !important;
        }

        /* Center mainfeed content block */
        #mainfeed {
            margin: 0 auto !important;
            float: none !important;
        }
    `;
    document.head.appendChild(style);

    // Run DOM modifications after page fully loads
    window.addEventListener('load', () => {
        // Move the #menu to the top of <body>
        const menu = document.getElementById('menu');
        if (menu) {
            document.body.insertBefore(menu, document.body.firstChild);
        }

        // Remove the #footer element
        const footer = document.getElementById('footer');
        if (footer && footer.parentNode) {
            footer.parentNode.removeChild(footer);
        }
    });
})();