Skip to content

Instantly share code, notes, and snippets.

@uu59
Created March 28, 2011 05:07
Show Gist options
  • Save uu59/890032 to your computer and use it in GitHub Desktop.
Save uu59/890032 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name kyoko-np warning
// @namespace http://twitter.com/uu59
// @version 1.0.0
// @include http://kyoko-np.net/*
// ==/UserScript==
(function(){
var h = document.querySelectorAll('font[size="5"] b')[1];
h.innerHTML = '[kyoko-np] ' + h.innerHTML;
var w = document.querySelectorAll('font[color="#fefefe"]')[0];
w.style.color = "red";
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment