/*
* @title Y! SSS
* @description Yahoo realtime social stream search
* @include http://realtime.search.yahoo.co.jp/search?*
* @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://realtime.search.yahoo.co.jp/search?p=' + encodeURIComponent(word);
})();