您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bot pobierający ocenę produkcji z serwisu myanimelist.net!
// ==UserScript== // @name Score MAL // @namespace http://shirya.pl/ // @version 1.0.1 // @description Bot pobierający ocenę produkcji z serwisu myanimelist.net! // @author Shirya // @run-at document-start // @include http://bajkitv.pl/* // @include https://bajkitv.pl/* // @grant none // ==/UserScript== $(document).ready(function(){ var title = $(document).find('#mov_title').text(); $.ajax({ type: "post", url: "http://krzywy853.hol.es/bt/malScore.php", data:{"video": title}, beforeSend:function() { $('#num-votes').after('<span id="fm-loa1" class="i load mini"></span>'); }, success:function(response) { $("#fm-loa1").addClass("hidden"); $('#num-votes').after('<span>'+response+'</span>'); } }); });