Skip to content

Instantly share code, notes, and snippets.

@hogelog
Created February 11, 2010 15:47
Show Gist options
  • Save hogelog/301634 to your computer and use it in GitHub Desktop.
Save hogelog/301634 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name dqnplus
// @namespace dqnplus
// @include http://blog.livedoor.jp/dqnplus/*
// ==/UserScript==
function remove(id) {
var node = document.getElementById(id);
node.parentNode.removeChild(node);
}
remove("comment");
remove("trackback");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment