ProNexus

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

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği yüklemek için Tampermonkey gibi bir uzantı yüklemeniz gerekir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

Bu stili yüklemek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için Stylus gibi bir uzantı kurmanız gerekir.

Bu stili yükleyebilmek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı kurmanız gerekir.

Bu stili yükleyebilmek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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";
    
});