A custom CSS file to clean up the horrendous styles on MrMoneyMustache.com
当前为
// ==UserScript==
// @locale us_EN
// @name Mr Money Mustache
// @namespace http://www.mrmoneymustache.com/
// @description A custom CSS file to clean up the horrendous styles on MrMoneyMustache.com
// @include *
// @version 0.1.3
// ==/UserScript==
function addStyle(style) {
var head = document.getElementsByTagName("HEAD")[0];
var ele = head.appendChild(window.document.createElement( 'style' ));
ele.innerHTML = style;
return ele;
}
addStyle('@import "https://cdn.rawgit.com/jameswilson/2a00792310896381e577/raw/2f1ef0c6624bd375442cb070c4c80fbe0fb9783e/MrMoneyMustache.css";');