Skip to content

Instantly share code, notes, and snippets.

Created September 14, 2009 02:19
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 anonymous/186448 to your computer and use it in GitHub Desktop.
Save anonymous/186448 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name EternalForceBlizzardize
// @namespace http://flan495.net/
// @description EternalForceBlizzardize. Target will die.
// @include http://ja.wikipedia.org/*
// ==/UserScript==
var bodyContent = document.getElementById("bodyContent");
if (!bodyContent) { return; }
var p = bodyContent.getElementsByTagName("P");
if (!p || !p[0]) { return; }
p[0].innerHTML += unescape('%u76F8%u624B%u306F%u6B7B%u306C%u3002');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment