Skip to content

Instantly share code, notes, and snippets.

@dslusser
Forked from mazuhl/gist:392141
Created October 25, 2018 13:51
Show Gist options
  • Save dslusser/4457c79651611d77e44809ce2b0a4305 to your computer and use it in GitHub Desktop.
Save dslusser/4457c79651611d77e44809ce2b0a4305 to your computer and use it in GitHub Desktop.
Bookmarklet to add stylesheet to web page
javascript: (function () {
var linkNode = document.createElement('link');
linkNode.rel = 'stylesheet';
linkNode.href = 'http://www.website.com/stylesheets/style.css';
document.getElementsByTagName('head')[0].appendChild(linkNode);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment