sgmod - sky map dev script

turns sky into a map dev

ของเมื่อวันที่ 31-12-2016 ดู เวอร์ชันล่าสุด

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

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