/*
* @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
* @javascript_url
*/
// c.f. http://ptech.g.hatena.ne.jp/noromanba/20131030/1383097686
(function () {
if (!/github.com$/.test(location.hostname)) return;
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);
})();