サムネをリンク先の画像で置き換える

    @@ -5,9 +5,10 @@ * @javascript_url */ -const images = document.querySelector('a[href] > img'); -for (i = 0; i < images.length; ++i) { - img = images[i]; - if ((link = img.parentElement) && link.href.match(/(jpg|png|gif)$/i)) - img.src = link.href; -} +(function(images) { + for (i = 0; i < images.length; ++i) { + img = images[i]; + if ((link = img.parentElement) && link.href.match(/(jpg|png|gif)$/i)) + img.src = link.href; + } +})(document.querySelector('a[href] > img'))
  • /*
     * @title サムネをリンク先の画像で置き換える
     * @include http://*
     * @license MIT License
     * @javascript_url
     */
    
    (function(images) {
      for (i = 0; i < images.length; ++i) {
        img = images[i];
        if ((link = img.parentElement) && link.href.match(/(jpg|png|gif)$/i))
          img.src = link.href;
      }
    })(document.querySelector('a[href] > img'))
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2017/02/01 20:13:08 - 2017-02-01
  2. 2017/02/01 20:11:39 - 2017-02-01
  3. 2017/02/01 20:10:10 - 2017-02-01