/*
* @title Google検索結果URLを短縮
* @description Google検索結果から検索文字列以外の不要なクエリパラメータを削除
* @include http*://www.google.*
* @license MIT License
* @require
* @javascript_url
*/
if (location.host.includes("www.google")) {
var tmp = location.href.split("?");
var fore = tmp[0];
var queryString = tmp[1];
var q = queryString.split("&").find(function(elem) { return elem.startsWith("q="); } );
if (!q)
alert("queryStringにqがありません");
else {
window.location.href = fore + "?" + q;
}
} else
alert("google検索のページではなさそうです!");