google search last 6 months

  • /*
     * @title google search last 6 months
     * @description Google検索の期間を6ヶ月以内にするやつ。faviconはこれ→ http://gyazo.com/d51c98b79b30061e4b165a185a6bd21d.png
     * @include http://www.google.tld/search?*
     * @include https://www.google.tld/search?*
     * @include https://encrypted.google.com/search?*
     * @license MIT License
     * @require
     * @favicon http://gyazo.com/d51c98b79b30061e4b165a185a6bd21d.png
     * originaled by http://mitukiii.jp/2010/3/15/1088568/
     */
    
    (function(){
      var new_date = "m6";
      var uri = document.location.toString();
      var matched = uri.match(/(&tbs=[\w:]+)/);
      var new_date_parameter = '&tbs=qdr:' + new_date;
      document.location = matched ? uri.replace(matched[0], new_date_parameter) : uri + new_date_parameter;
    })();
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2010/09/14 02:39:55 - 2010-09-14
  2. 2010/09/14 01:56:53 - 2010-09-14