Skip to content

Instantly share code, notes, and snippets.

@rlemon
Created June 23, 2014 19:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rlemon/c8fdc3b7385c59109b8a to your computer and use it in GitHub Desktop.
Save rlemon/c8fdc3b7385c59109b8a to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Better Chat Icon
// @author Robert Lemon
// @version 0.1
// @namespace
// @description RUJordan doesn't like the chat icon
// @include http://chat.stackoverflow.com/rooms/*
// ==/UserScript==
(function changeChatIconBecauseRUJordanSaysSo() {
var link = document.createElement('link');
link.rel = 'shortcut icon';
link.href = 'http://i.stack.imgur.com/G6SC0.jpg?s=16';
document.head.appendChild(link);
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment