github css

    
      
  • /*
     * @title github css
     * @description recover GitHub css (UserScript)
     * @include https://github.com/*
     * @license MIT License http://opensource.org/licenses/MIT
     * @author noromanba    http://flavors.me/noromanba
     * @require 
     */
    
    (function () {
        var addCSS = (function () {
            var parent = document.head || document.documentElement ||  document.body;
            return function (url) {
                var link = document.createElement('link');
                link.rel = 'stylesheet';
                link.type = 'text/css';
                link.href = url;
                parent.appendChild(link);
            };
        })();
    
        var css = 'https://github.global.ssl.fastly.net/assets/github.css';
    
        addCSS(css);
    })();
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2013/10/30 10:56:39 - 2013-10-30
  2. 2013/10/30 10:03:32 - 2013-10-30
  3. 2013/10/30 09:44:39 - 2013-10-30
  4. 2013/10/30 09:38:56 - 2013-10-30
  5. 2013/10/30 09:37:32 - 2013-10-30