Created
February 5, 2015 12:38
-
-
Save shizone/5cce791419141bfc9ac3 to your computer and use it in GitHub Desktop.
DanKogai
This file contains hidden or 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 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