您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Cambiar fondo de perfil por un GIF
当前为
// ==UserScript== // @name FonGIF // @namespace FonGIF // @version 1.2 // @description Cambiar fondo de perfil por un GIF // @match *://www.taringa.net/cuenta // @icon http://o1.t26.net/images/favicon.ico // @copyright @Cazador4ever // ==/UserScript== (function () { var contenido = $('<div class="field clearfix"><label for="cambiar-fondo">Fondo:</label><input type="text" name="link" id="link" autocomplete="on" placeholder="Link de kn3" title="Colocar el link del gif subido a Kn3 por favor."><button type="button" class="btn v" id="cambiar" ><font color="#fff">Cambiar</font></button></div>'); $('fieldset').prepend(contenido); $('#cambiar').on('click', function(){ $("#cambiar").css("background","#005DAB"); var fondo = $('#link').val().trim(); $.ajax({ type : 'POST', dataType : 'json', url : '/ajax/user/background', data : { url : fondo.replace('.gif','%2E%67%69%66?/bg.jpg') }, complete: function(){ document.location.reload(); } }); }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址