Google で英語の検索結果を表示

  • /*
     * @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();
    }())
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2017/05/22 17:03:36 - 2017-05-22
  2. 2017/05/22 17:03:05 - 2017-05-22