Wikipedia Content Max Width

Limit Wikipedia main content width to 1024px.

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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.

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

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

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!)

// ==UserScript==
// @name         Wikipedia Content Max Width
// @description  Limit Wikipedia main content width to 1024px.
// @match        *://*.wikipedia.org/*
// @version      0.1
// @namespace https://greasyfork.org/users/658805
// ==/UserScript==

(function() {
    'use strict';
    var node = document.createElement('style');
    node.innerHTML = '@media screen and (min-width: 1280px) { #mw-head { max-width: calc(1024px + 160px + 82px) !important; right: auto !important; left: calc((100vw - (1024px + 160px + 16px * 6)) / 2) !important; } #content { max-width: 1024px !important; border-right-width: 1px !important; margin-left: calc((100vw - (1024px + 160px + 16px * 6)) / 2 + 160px + 16px) !important; } #mw-panel { left: calc((100vw - (1024px + 160px + 16px * 6)) / 2) !important; } }';
    document.head.appendChild(node);
})();