sgmod - sky map dev script

turns sky into a map dev

Stan na 31-12-2016. Zobacz najnowsza wersja.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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