사용자:다메즈마/mascot notification.js

참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다.

  • 파이어폭스 / 사파리: Shift 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5 또는 Ctrl-R을 입력 (Mac에서는 ⌘-R)
  • 구글 크롬: Ctrl-Shift-R키를 입력 (Mac에서는 ⌘-Shift-R)
  • 인터넷 익스플로러 / 엣지: Ctrl 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5를 입력.
  • 오페라: Ctrl-F5를 입력.
$('head').append(
'<script src=\'/index.php?title=사용자:다메즈마/hisyokan2.js&action=raw&ctype=text/javascript\'><\/script>'
);
var libra = 
{
	img:"/images/3/3d/리브레_위키_마스코트.png",
	comment:"한번만 더 '노브라'라고 하면 차단할테니 각오하세요" 
};
var libra2 = libra;
libra2.img = "/images/8/8b/리브라_대반달.png";
var libra3 =
{
	img:"/images/d/d3/백팩커리브라.png",
	comment:"자 얼릉 문서수정하러 가자고"
};
var libren =
{
	img:"/images/b/be/리브렌_100.png",
	comment:"나 팩맨아니라고!"
};
var itsurea_moe =
{
	img:"/images/a/a3/150610.png",
	comment:"ㄹㅍㄷ ㄴㅁ는 자살하시길 왜 안 자살요?"
};
var itsurea_moe2 = itsurea_moe;
itsurea_moe2.comment = "아 시발 죽창 존나 아프네 내가 야비군 좋아서 갔다 온건줄 아나";
var mascot_list = 
[
libra,
libra2,
libra3,
libren,
itsurea_moe,
itsurea_moe2
];
if($(document).width() >= 1000)
{
var select = mascot_list[randomRange(0,mascot_list.length)];
mascot.init(select.img,[select.comment]);
mascot.Show();
var temp = function(){
	var param = 
	{
		"action":"query",
		"meta":"notifications",
		"notlimit":10,
		"format":"json"
	};
	$.ajax("/api.php",
	{
		data:param,
		dataType:"json"
	})
	.done(function(res)
	{
		var list_o = res.query.notifications.list;
		var list = [];
		for(var key in list_o)
		{
			list.push(list_o[key]);
		}
		var unread_message = [];
		for(var i = 0 ; i < list.length ; i++)
		{
			if(list[i].read == null && list[i].type != "page-linked")
			{
				unread_message.push(list[i]);
			}
		}
		if(unread_message.length != 0)
		{
			mascot.ShowMessageNow("<a href='/wiki/"+ encodeURIComponent(unread_message[unread_message.length - 1].title.full)  + "'>알림이 도착했어요</a>");
		}
		else
		{
 
		}
	});
};
temp();
setInterval(temp,1000 * 20);
}