Clip Images

    
      
  • /*
     * @title Clip Images
     * @include http://*
     * @license MIT License
     */
    
    var image_type = /\.(?:jpe?g|gif|png|svg|bmp)$/,
    	images = [],
    	sources = {};
    Array.prototype.slice.call(document.images).forEach(function(img) {
    	var src = image_type.exec(img.src);
    	if (src && !sources[src]) {
    		sources[src] = true;
    		images.push('<img src="' + src +'">');
    	}
    });
    images.length && (document.body.innerHTML = images.join(''));
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2012/02/04 16:58:48 - 2012-02-04
  2. 2012/02/04 16:58:10 - 2012-02-04
  3. 2011/11/13 16:52:07 - 2011-11-13
  4. 2011/11/13 16:46:53 - 2011-11-13
  5. 2011/11/13 16:33:17 - 2011-11-13