emotes for fine dining

Either go Raw or go home.

当前为 2014-08-17 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name       emotes for fine dining
// @namespace  http://use.i.E.your.homepage/
// @version    6.2
// @description  Either go Raw or go home.
// @match      http://instasynch.com/rooms/KitchenHell
// @grant none
// @copyright  1946
// ==/UserScript==

// emote script for greasemonkey or tampermonkey.
// $codes[""] = \'<img src="">\'; \
 
// KitchenHell's emotes
// by Rhaggs (Credit to froggyfrog for the the HUGE copy pasta)
 
var script = document.createElement('script');
script.setAttribute("type", "application/javascript");
script.textContent = ' \
        setTimeout(function(){ /*alert("abc"); */ \
        $codes["raw"] = \'<img src="http://imgur.com/NW9oGy2.png">\'; \
        $codes["giveup"] = \'<img src="http://i.imgur.com/35FpetD.gif">\'; \
        $codes["dumbo"] = \'<img src="http://i.imgur.com/YemL9d3.gif">\'; \
        $codes["yes"] = \'<img src="http://i.imgur.com/QglALDX.gif">\'; \
        $codes["comeon"] = \'<img src="http://i.imgur.com/2OL5qua.gif">\'; \
        $codes["amy"] = \'<img src="http://i.imgur.com/PDFkgoI.gif">\'; \
        $codes["bb"] = \'<img src="http://i.imgur.com/Qbmleyg.png">\'; \
        $codes["open"] = \'<img src="http://i.imgur.com/7sGQXlH.gif">\'; \
	$codes["unf"] = \'<img src="http://i.imgur.com/wlzoeTV.gif">\'; \
	$codes["stop"] = \'<img src="http://i.imgur.com/m1IPmaZ.gif">\'; \
	$codes["gey"] = \'<img src="http://i.imgur.com/XKhZt3T.jpg">\'; \
	$codes["raj"] = \'<img src="http://i.imgur.com/2u167ZB.jpg">\'; \
	$codes["matty"] = \'<img src="http://i.imgur.com/2qNrVcJ.png">\'; \
	$codes["jp"] = \'<img src="http://i.imgur.com/RS7fa6C.gif">\'; \
	$codes["hadenuf"] = \'<img src="http://i.imgur.com/lWVTkqd.gif">\'; \
	$codes["queen"] = \'<img src="http://i.imgur.com/eAREj26.png">\'; \
	$codes["omg"] = \'<img src="http://i.imgur.com/hnL3TsC.gif">\'; \
	$codes["cold"] = \'<img src="http://i.imgur.com/anZMO11.gif">\'; \
	$codes["out"] = \'<img src="http://i.imgur.com/q44UPS0.gif">\'; \
	}, 1500);'
        ;
 
document.head.appendChild(script);