ProNexus

Quitá la sección de noticias y usá toda la página para el nexus, tanto en Twinoid como en Muxxu

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        ProNexus
// @namespace   Minienzoo
// @description Quitá la sección de noticias y usá toda la página para el nexus, tanto en Twinoid como en Muxxu 
// @include     https://twinoid.com/*
// @include     http://twinoid.com/*
// @include     https://muxxu.com/*
// @include     http://muxxu.com/*
// @exclude     https://twinoid.com/user/*
// @exclude     http://twinoid.com/user/*
// @version     2.1
// @grant       none
// ==/UserScript==

//Nota del programador: 
//
//Esta update 2.0 del 04/07/2019 se da debido a que MT ha retirado a jQuery de Twinoid. 
//Se pretende solucionar este problema para seguir ofreciendo la mejor experiencia en el nexus.  
//
window.addEventListener("load", function(){
    document.querySelector(".newsColumn").style = "display: none";
    document.querySelector(".leftColumn").style = 'width: 980px; border: 0px; box-shadow: 0px 0px 2px -1px #000';
    document.querySelector(".title").style = "margin: 15px 0px 15px";
    document.querySelector(".sub").style = "display: none";
    document.querySelector("#tid_0").style = "border-top: 0px; margin: 0px 0px 0px; padding-top: 0px";

    // Para Muxxu
    document.querySelector(".right").style = "display: none";
    
});