Github pages to Github.com

  • /*
     * @title Github pages to Github.com
     * @description jump from github.io to github.com
     * @include http://*.github.io/*
     * @license MIT License
     * @require 
     */
    
    (function() {
        var userName = location.host.split(".").shift();
        if (userName == null) {
            alert("Not Found UserName");
        }
        var path = userName + location.pathname;
        var githubRepo = "https://github.com/" + path;
        location.href = githubRepo;
    })();
    
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2013/11/20 10:14:41 - 2013-11-20