您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Template for IntsaSync emote userscript
// ==UserScript== // @name Instasynch emotes loader // @namespace Bibby // @description Template for IntsaSync emote userscript // @version 1.08 // @license MIT // @author Zod- // @grant none // @include *://*.instasynch.com/* // @include *://instasynch.com/* // @include *://*.instasync.com/* // @include *://instasync.com/* // ==/UserScript== var emotes = [ //{ src:"http://i.imgur.com/uWCIsFe.jpg", width:55, height:55, title:'anita'}, //{ src:"http://i.imgur.com/uWCIsFe.jpg", width:55, height:55, title:'anita'} ]; 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); }