Skip to content

Instantly share code, notes, and snippets.

@kikairoya
Created August 5, 2013 08:06
Show Gist options
  • Save kikairoya/6154192 to your computer and use it in GitHub Desktop.
Save kikairoya/6154192 to your computer and use it in GitHub Desktop.
kill geocities' ad window
// ==UserScript==
// @name geocities
// @include http://www.geocities.jp/*
// ==/UserScript==
(function () {
document.addEventListener('DOMContentLoaded', function () {
var n = document.getElementById("y_gc_div_adcntr");
if (n) n.parentNode.removeChild(n);
}, false);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment