Skip to content

Instantly share code, notes, and snippets.

@kyanny
Created September 8, 2009 10:14
Show Gist options
  • Save kyanny/182830 to your computer and use it in GitHub Desktop.
Save kyanny/182830 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name rssmix LDRize
// @namespace http://d.hatena.ne.jp/a666666/
// @include http://pikapika.to/rssmix/*
// ==/UserScript==
(function(){
var $ = unsafeWindow.jQuery;
$('dt.rheader div a.article').each(function(i,elem){
$(elem).addClass("taggedlink");
$(elem).wrap(
$("<span>").addClass("xfolkentry")
);
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment