// ==UserScript== // @name Other emotes oh who cares // @namespace http://firefox.had.tabs.first/ // @version 14.1 // @description rip // @match http://instasync.com/r/shinyobama // @match http://instasync.com/r/Gyiyg_Wanabe // @match http://old.instasync.com/rooms/shinyobama // @match http://old.instasync.com/rooms/Gyiyg_Wanabe // @grant none // @copyright I stol this // @downloadURL https://update.greasyfork.icu/scripts/11036/Other%20emotes%20oh%20who%20cares.user.js // @updateURL https://update.greasyfork.icu/scripts/11036/Other%20emotes%20oh%20who%20cares.meta.js // ==/UserScript== // emote script for greasemonkey or tampermonkey. // emotes // by // Mike Stoklasa var script = document.createElement('script'); script.setAttribute("type", "application/javascript"); script.textContent = ' \ setTimeout(function(){ \ $codes["cherry"] = \'\'; \ $codes["senora"] = \'\'; \ $codes["video"] = \'\'; \ $codes["games"] = \'\'; \ $codes["holdonlittleguy"] = \'\'; \ $codes["dog"] = \'\'; \ $codes["meme"] = \'\'; \ $codes["great"] = \'\'; \ $codes["horrifying"] = \'\'; \ $codes["tacticaldog"] = \'\'; \ $codes["postal3"] = \'\'; \ $codes["sundowner"] = \'\'; \ $codes["snakeeater"] = \'\'; \ $codes["trash"] = \'\'; \ $codes["dickpic"] = \'\'; \ $codes["digimon"] = \'\'; \ $codes["lucario"] = \'\'; \ $codes["clg"] = \'\'; \ $codes["hey_baby_ever_heard_of_spaghetti?"] = \'\'; \ $codes["bye"] = \'\'; \ $codes["anime"] = \'\'; \ $codes["goatboy"] = \'\'; \ $codes["asriel"] = \'\'; \ $codes["booby"] = \'\'; \ $codes["FOREBODEN"] = \'\'; \ $codes["determination"] = \'\'; \ $codes["alphys"] = \'\'; \ $codes["soul"] = \'\'; \ $codes["undyne"] = \'\'; \ $codes["rawr"] = \'\'; \ $codes["confused"] = \'\'; \ $codes["furry"] = \'\'; \ $codes["witcher3"] = \'\'; \ $codes["doubledown"] = \'\'; \ $codes["ye"] = \'\'; \ $codes["hug"] = \'\'; \ $codes["boss"] = \'\'; \ $codes["annotations"] = \'\'; \ }, 2000);' ; document.body.appendChild(script);