/*
* @title Twitter search feed
* @description create Atom by search result on Twitter
* @include http://*
* @include https://*
* @contributor pmint http://let.hatelabo.jp/pmint/let/gYC-y5a00MSUTw
* @license MIT License
*/
(function () {
var word = prompt('word?');
if (!word) return;
prompt('Copy Me', 'http://search.twitter.com/search.atom?q=' + encodeURIComponent(word));
})();