Google検索結果URLを短縮

    @@ -1,10 +1,23 @@ /* - * @title Google検索結果から検索文字列以外の不要なクエリパラメータを削除 + * @title Google検索結果URLを短縮 * @description Google検索結果から検索文字列以外の不要なクエリパラメータを削除 - * @include http://www.google.* + * @include http*://www.google.* * @license MIT License - * @require + * @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検索のページではなさそうです!"); +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検索のページではなさそうです!");
  • /*
     * @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検索のページではなさそうです!");
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2018/06/15 07:00:21 - 2018-06-15
  2. 2018/02/15 16:24:19 - 2018-02-15