Skip to content

Instantly share code, notes, and snippets.

@hotchpotch
Created July 6, 2010 03:48
Show Gist options
  • Save hotchpotch/464971 to your computer and use it in GitHub Desktop.
Save hotchpotch/464971 to your computer and use it in GitHub Desktop.
// LDRize (c) id:snj14
function addStyle(css, id){ // GM_addStyle is slow
var link = document.createElement('link');
link.rel = 'stylesheet';
link.href = 'data:text/css,' + escape(css);
document.documentElement.childNodes[0].appendChild(link);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment