/*
* @title Google Search -> Google Alart
* @description Google検索結果のクエリーをGoogleアラートに渡す
* @license MIT License
*/
location.href = 'http://www.google.com/alerts?hl=ja&gl=jp&q='
+ encodeURIComponent(
(location.href.match('https?://www\.google\.(?:com|co\.jp)/(?:search|webhp)\?.*')) ? location.href.match('[\?&]q=([^&]*)')[1] : document.getSelection()
);