您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Custom Emotes
当前为
// ==UserScript== // @name DwarfTyrone shared Script // @namespace Rooms // @version 0.08 // @description Custom Emotes // @grant none // @copyright 2015 // @include *://*.instasynch.com/r/dwarftyrone* // @include *://instasynch.com/r/dwarftyrone* // @include *://*.instasync.com/r/dwarftyrone* // @include *://instasync.com/r/dwarftyrone* // ==/UserScript== // { src:"", width:, height:, title:''}, // { src:"", width:, height:, name:''}, var emotes = [ { src:"https://i.ytimg.com/vi/Z6gG3tKDBlk/maxresdefault.jpg", width:100, height:60, title:'doit'}, { src:"https://wwcdn.weddingwire.com/wedding/1120001_1125000/1123438/thumbnails/400x400_1346783188237-partyhard.jpg", width:110, height:110, title:'partyhard'}, { src:"http://i.imgur.com/YqdnTBX.jpg", width:100, height:100, title:'bigblacknigga'}, { src:"http://i.imgur.com/RFlgdxc.gif", width:90, height:120, title:'lipsuckin'}, { src:"https://i.imgur.com/e59lUCu.gif", width:220, height:200, title:'bigblackgif'}, { src:"http://i.imgur.com/c1hMV16.jpg", width:100, height:100, title:'fuckboy'}, { src:"https://steamcommunity.com//economy/emoticon/:dappershark:", width:18, height:18, title:'dappershark'}, { src:"http://images-cdn.moviepilot.com/image/upload/c_fill,h_296,w_480/t_mp_quality/screen-shot-2015-02-18-at-4-37-30-pm-the-russian-sleep-experiment-is-the-freakiest-story-ever-told-but-is-it-true-png-267188.jpg", width:120, height:100, title:'sleep'}, { src:"https://i.imgur.com/Df8bSz6.gif", width:150, height:115, title:'snieg'}, { src:"http://i.imgur.com/pm2jbj7.gif", width:150, height:94, title:'sack'}, { src:"https://i.imgur.com/HdzRq4d.gif", width:125, height:100, title:'cut'}, { src:"https://i.imgur.com/KlabckX.png", width:85, height:85, title:'tramplin'}, { src:"http://i.imgur.com/iQJaB0J.gif", width:250, height:250, title:'mindcrush'}, { src:"http://i.imgur.com/rvfheVi.gif", width:90, height:60, title:'judenpls'}, { src:"http://images-cdn.moviepilot.com/image/upload/c_fill,h_296,w_480/t_mp_quality/screen-shot-2015-02-18-at-4-37-30-pm-the-russian-sleep-experiment-is-the-freakiest-story-ever-told-but-is-it-true-png-267188.jpg", width:1920, height:1280, title:'youaskedforthis'}, { src:"https://i.imgur.com/09J9qW6.gif", width:100, height:75, title:'hikevin'}, { src:"http://www.arigato.heisi.at/wcf/images/smilies/pusheen_hello.png", width:75, height:100, title:'hi'}, { src:"http://i.imgur.com/k9xpUve.gifv", width:125, height:100, title:'thefuck'}, { src:"http://i.imgur.com/llw7y4f.gifv", width:125, height:100, title:'canteven'}, ]; function addEmotes(){ emotes.forEach(function(emote){ window.$codes[emote.title || emote.name] = $('<img>', emote)[0].outerHTML; }); } function main(){ if(!window.$codes || Object.keys(window.$codes).length === 0){ setTimeout(main, 75); }else{ addEmotes(); } } if (window.document.readyState === 'complete') { main(); } else { window.addEventListener('load', main, false); }