Created
October 27, 2011 11:02
-
-
Save raa0121/1319281 to your computer and use it in GitHub Desktop.
はちまと刃を弾くフィルタ for Greasemonkey
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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