/*
* @title NAVER SSS
* @description NAVER realtime social stream search
* @include http://search.naver.jp/realtime?*
* @license MIT License http://nrm.mit-license.org/2012
* @require
*/
// c.f. http://ptech.g.hatena.ne.jp/noromanba/20121103/1351964192
(function () {
var word = prompt('Search This');
if (!word) return;
location.href = 'http://search.naver.jp/realtime?sm=tab_hty.realtime&q=' + encodeURIComponent(word);
})();