InstagramからInstagyに移動

    
      
  • /*
     * @title InstagramからInstagyに移動
     * @description Instagramの個人ページからInstagyの個人ページに移動します。
     * @include http://*
     * @license MIT License
     * @require 
     */
    
    (function(){
    	if(location.href.match(/^https?:\/\/instagram\.com\/([\.\w]+)/)){
    		location.href='http://instagy.com/user/'+RegExp.$1;
    	}
    	else if(location.href.match(/^http:\/\/instagy\.com\/user\/([\.\w]+)/)){
    		location.href='http://instagram.com/'+RegExp.$1+'/';
    	}
    })();
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2016/03/07 15:37:34 - 2016-03-07
  2. 2015/10/14 18:15:05 - 2015-10-14
  3. 2015/08/31 23:10:47 - 2015-08-31