MAL-Fullscreen

remove margins from both sides to extended the view

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

/* ==UserStyle==
@name         MAL-Fullscreen
@description  remove margins from both sides to extended the view
@namespace    lemonadeforlife
@version      1.0.1
@author       lemonadeforlife (https://github.com/lemonadeforlife)
@homepageURL  https://github.com/lemonadeforlife/MAL-Fullscreen
@supportURL   https://github.com/lemonadeforlife/MAL-Fullscreen/issues
@license      unlicense
@match        https://myanimelist.net
@preprocessor stylus
==/UserStyle== */

@-moz-document url-prefix("https://myanimelist.net/") {
#myanimelist, #menu{
    width: 100% !important;
}

.left-column, .right-column {
    width: 50% !important;
}
article.widget-container:nth-child(1){
    margin: 0 !important;
}

#widget-seasonal-video > div:nth-child(3){
    width: auto !important;
}

.news-unit {
    width: auto !important;
}

.widget-header{
    text-align: center !important;
}

.h1.edit-info {
    display: flex !important;
    justify-content: space-between !important;
}

#horiznav_nav{
    text-align: center !important;
}
}