Create TOC

2009년 7월 10일

Opera/다음뷰바 제거 스크립트

다음 뷰바를 제거하는 UserScript. 반드시 UTF-8 로 저장하고 사용해야 한다.

// ==UserScript==
// @name remove_daumviewbar.user.js
// @author	Yun-yong, Choi
// @version	0.1
// @namespace	http://*.daum.net/*
// @compatible   Greasemonkey, Opera 8/9
// ==/UserScript==

if (/(?:^|\.)daum\.net/i.test(window.location.hostname)) document.addEventListener('load', function() {
	var iframe = document.getElementById("viewIframe");
	if (iframe)
	{
		window.location = iframe.src;
	}
}, false);