sgmod - sky map dev script

turns sky into a map dev

اعتبارا من 31-12-2016. شاهد أحدث إصدار.

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