Skip to content

Instantly share code, notes, and snippets.

@shizone
Created February 5, 2015 12:38
Show Gist options
  • Save shizone/5cce791419141bfc9ac3 to your computer and use it in GitHub Desktop.
Save shizone/5cce791419141bfc9ac3 to your computer and use it in GitHub Desktop.
DanKogai
// ==UserScript==
// @name DanKogai
// @namespace http://shizone.github.io/
// @description DanKogai
// @include http://droidkaigi.github.io/
// ==/UserScript==
(function() {
document.title = document.title.replace(
/DroidKaigi/g, "DanKogai");
document.body.innerHTML = document.body.innerHTML.replace(
/DroidKaigi/g, "DanKogai");
}
)();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment