Page 1 of 1

인벤 광고를 그리스 몽키로 차단 할 수 있나요

Posted: 2006 03 31 17:32 48
by 드로이얀7(이준호)
http://eq2.inven.co.kr/ 에 접속하면 왼쪽의 광고(현재는 파워콤 가입 이벤트)가 메뉴를 가려서 무지 불편합니다.

애드블록으로는 차단이 힘든구조같고, URL에서
javascript:closeWin_pause()
를 넣고 엔터치면 닫히는거는 확인했는데 이걸 그리스몽키를 이용해서 자동으로 처리하려면 어떻게 해야 되나요?


이하는 문제의 광고의 소스부분입니다.


<div id="closebeta_pop" style="display:none;position:absolute;top:230;left:0;z-index:5;background:transparent">
<SCRIPT language="JavaScript">
function setCookie_event(name, value, expiredays){

var todayDate = new Date();
//todayDate.setDate(todayDate.getDate() + expiredays);
todayDate.setHours(todayDate.getHours() + expiredays);
document.cookie = name + "=" + escape(value) + "; path=/; expires=" + todayDate.toGMTString() + ";domain=.inven.co.kr;"


}

function closeWin(){
if(document.checkClose.Notice.checked){
setCookie_event("powercomm_event", "1" , 8);
closebeta_pop.style.display = 'none';
}
//closebeta_pop_zera.style.display = 'none';
}

function closeWin_pause(){
closebeta_pop.style.display = 'none';
}
</SCRIPT>

<form name="checkClose">
<table cellpadding="0" cellspacing="1" width="280" bgcolor="#000000"border="1">
<tr>
<td width="280" align="right" valign="bottom">
<table cellpadding="0" cellspacing="0" width="280">
<tr height="411">

<td colspan="2" width="294"><img src="http://img.inven.co.kr/image/www/event/ ... nt0324.jpg" width="294" height="411" border="0" usemap="#map_event_powercomm"></td>
</tr>
<tr height="20" bgcolor="#000000">
<td width="200" style="padding:2 0 0 10"><input type="checkbox" name="Notice" onfocus="this.blur()" onclick="javascript:closeWin()"><font color="#FFFFFF">하루 동안 이 창을 열지않음.</font></td>
<td width="80" align="right" style="padding:2 10 0 0"><a href=javascript:closeWin_pause()><font color="#ffffff">창닫기</font></a></td>
</tr>
</table>
</td>

</tr>
</table>
</form>
</div>

Posted: 2006 03 31 20:54 48
by iNode
Adblock Plus 0.5.x 에서는 다음 문자열을 block해주시면 되겠습니다.

http://eq2.inven.co.kr/#DIV(closebeta_pop)


Greasemonkey 스크립트로도 막을 수 있는데
Platypus Extension을 사용하면 WYSIWYG 방식으로
쉽게 레이아웃 조작 스크립트를 생성해줍니다.

Posted: 2006 04 01 02:28 21
by 드로이얀7(이준호)
답변 감사드립니다. :D

Posted: 2006 04 01 20:02 00
by 드로이얀7(이준호)
Adblock Plus 0.6버전대를 써서 그런지 DIV차단은 안 되더군요.

결국 Greasemonkey + Platypus로 해결했습니다.