Skip to content

Instantly share code, notes, and snippets.

@hmbrg
Last active March 18, 2017 21:48
Show Gist options
  • Select an option

  • Save hmbrg/0d806c5d35f3618bc4f1f2cc2343bd49 to your computer and use it in GitHub Desktop.

Select an option

Save hmbrg/0d806c5d35f3618bc4f1f2cc2343bd49 to your computer and use it in GitHub Desktop.
Favicon changer
(function() {
var favurl = prompt("Insert icon url.", "url...");
var link = document.querySelector("link[rel*='icon']") || document.createElement('link');
link.type = 'image/x-icon';
link.rel = 'shortcut icon';
link.href = favurl;
document.getElementsByTagName('head')[0].appendChild(link);
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment