/*
* @title Google で英語の検索結果を表示
* @description Google の検索結果ページで実行すると、英語の検索結果のみ検索します。
* @include https://www.google.co.jp/search
* @license MIT License
* @require
* @javascript_url
*/
(function(){
var url = new URL(location.href);
url.searchParams.set("lr", "lang_en");
location.href = url.toString();
}())