NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name SuperMoonButts
// @namespace LargoSupermoonButts
// @description Replaces supermoon with butts
// @include *
// @version 2
// @grant none
// @author LargoSensei
// ==/UserScript==
var els = document.getElementsByTagName("*");
for(var i = 0, l = els.length; i < l; i++) {
var el = els[i];
el.innerHTML = el.innerHTML.replace(/ supermoon/gi, "<img src=http://i.imgur.com/iUaePGI.jpg width=100>");
el.innerHTML = el.innerHTML.replace(/ supermoon /gi, "<img src=http://i.imgur.com/iUaePGI.jpg width=100>");
el.innerHTML = el.innerHTML.replace(/supermoon /gi, "<img src=http://i.imgur.com/iUaePGI.jpg width=100>");
el.innerHTML = el.innerHTML.replace(/super moon/gi, "<img src=http://i.imgur.com/iUaePGI.jpg width=100>");
el.innerHTML = el.innerHTML.replace(/#supermoon/gi, "<img src=http://i.imgur.com/iUaePGI.jpg width=100>");
el.innerHTML = el.innerHTML.replace(/>supermoon‬</gi, "><img src=http://i.imgur.com/iUaePGI.jpg width=100><");
el.innerHTML = el.innerHTML.replace(/>#supermoon‬</gi, "><img src=http://i.imgur.com/iUaePGI.jpg width=100><");
}