您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
adds emotes
当前为
// ==UserScript== // @name Instasynch emotes loader // @namespace Bibby // @description adds emotes // @source https://github.com/BibbyTube/Emotes // @version 1.05 // @license GPL-3.0 // @author faqqq // @grant none // @include http://*.instasynch.com/* // @include http://instasynch.com/* // @icon http://i.imgur.com/bw2Zthys.jpg // @icon64 http://i.imgur.com/f3vYHNNs.jpg // ==/UserScript== var oldOnConnected = window.global.onConnected, emotes = [ //{ src:"http://i.imgur.com/uWCIsFe.jpg", width:55, height:55, title:'anita'}, ]; function addEmotes(){ for(var i = 0; i < emotes.length; i += 1){ var parameter = emotes[i]; window.$codes[parameter.title] = $('<img>', parameter)[0].outerHTML; } } //load emotes everytime we connect to a room //makes sure emotes work even after going to the frontpage and back window.global.onConnected = function () { oldOnConnected(); addEmotes(); }; //check if we are already connected and the script just loaded slow if(typeof(window.userInfo) !== 'undefined' && window.userInfo !== null){ addEmotes(); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址