SCPLite

removes many things except the text

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

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.

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name         SCPLite
// @namespace    https://scp-wiki.wikidot.com/
// @version      1.0
// @author       NextDev65
// @description  removes many things except the text
// @match        https://scp-wiki.wikidot.com*/*
// @resource      https://gist.github.com/NextDev65/ab1d091bc30f04bb9c2b13ab1d0dd44f/raw/hover_fade.js
// @run-at       document-end
// @grant        GM_getResourceText
// @noframes
// ==/UserScript==

(function() {
    'use strict';

    // https://www.tampermonkey.net/documentation.php#_require
    // Points to a JavaScript file that is loaded and executed before the script itself starts running.
    // @require      https://gist.github.com/NextDev65/ab1d091bc30f04bb9c2b13ab1d0dd44f/raw/hover_fade.js

    // https://www.tampermonkey.net/documentation.php#_resource
    // Preloads resources that can by accessed via GM_getResourceURL and GM_getResourceText by the script.
    // @resource     hover_fadejs https://gist.github.com/NextDev65/ab1d091bc30f04bb9c2b13ab1d0dd44f/raw/hover_fade.js

    // external
    Function(GM_getResourceText('hover_fadejs'))();
    hover_fade(); // eslint-disable-line no-undef

    document.getElementById('header').remove();
    document.getElementById('side-bar').remove();
    document.getElementById('container-wrap').id = "container-wrap-o";
    document.getElementById('page-content').scrollIntoView();
    document.getElementById('footer').remove();
    document.getElementById('license-area').remove();
    document.getElementById('footer-bar').remove();
})();