Skip to content

Instantly share code, notes, and snippets.

@raa0121
Created October 27, 2011 11:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raa0121/1319281 to your computer and use it in GitHub Desktop.
Save raa0121/1319281 to your computer and use it in GitHub Desktop.
はちまと刃を弾くフィルタ for Greasemonkey
// ==UserScript==
// @name hachima_and_zin_filter
// @namespace raa0121
// @description hachima_and_zin_filter
// @include http://jin115.com/*
// @include http://blog.esuteru.com/*
// ==/UserScript==
(function() {
var bodys = document.getElementsByTagName("body");
for(var i=0;i < bodys.length;i++){
var body = bodys[i];
body.parentNode.removeChild(body);
}
document.title="はちまor刃を検出しました";
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment