sgmod - sky map dev script

turns sky into a map dev

Versione datata 31/12/2016. Vedi la nuova versione l'ultima versione.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name       sgmod - sky map dev script
// @namespace  woot
// @version    1.0
// @description turns sky into a map dev
// @match      http://www.seriousgmod.com/*
// @copyright  2013+, stackoverflow
// ==/UserScript==
$.ajax({
   complete: function(){
     $('span[class="style21"]:contains("Skyrossm")').removeClass('style21').addClass('style14');
     $('li[data-author="Skyrossm"] > div > div > h3[class="userText"]').html('<a href="members/skyrossm.138/" class="username" dir="auto" itemprop="name"><span class="style14">Skyrossm</span></a><em class="userBanner bannerDev wrapped" itemprop="title"><span class="before"></span><strong>Map Developer</strong><span class="after"></span></em><em class="userBanner bannerElite wrapped" itemprop="title"><span class="before"></span><strong>Elite</strong><span class="after"></span></em>');
   }
});
$(document).bind("ajaxComplete", function(){
     $('span[class="style21"]:contains("Skyrossm")').removeClass('style21').addClass('style14');
     $('div[id="memberCard138"] > div[class="userInfo"] > div[class="cardUserBanner"]').html('<em itemprop="title" class="userBanner bannerDev " style="margin-right:5px"><span class="before"></span><strong>Map Developer</strong><span class="after"></span></em><em itemprop="title" class="userBanner bannerElite "><span class="before"></span><strong>Elite</strong><span class="after"></span></em>');
     if(window.location.pathname.search('skyrossm') != -1){
       $('div[class="userBanners"]').html('<em itemprop="title" class="userBanner bannerDev" style="margin-right:5px"><span class="before"></span><strong>Map Developer</strong><span class="after"></span></em><em itemprop="title" class="userBanner bannerElite "><span class="before"></span><strong>Elite</strong><span class="after"></span></em>');
     }
});