您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Migliora AnimeWorld
当前为
// ==UserScript== // @name BetterAnimeWorld // @namespace https://pizidavi.altervista.org/ // @version 1.3.5 // @description Migliora AnimeWorld // @author pizidavi // @require https://cdn.jsdelivr.net/gh/soufianesakhi/node-creation-observer-js@edabdee1caaee6af701333a527a0afd95240aa3b/release/node-creation-observer-latest.min.js // @include https://*.animeworld.* // @grant GM_xmlhttpRequest // @license MIT // ==/UserScript== (function() { 'use strict'; NodeCreationObserver.onCreation('#sign > div.signed', function (element) { $(element).find('div > ul > li:nth-child(3) > a').attr('href', 'user/watchlist?folder=1'); var i = setInterval(function() { getNotify(); }, 2*60*1000); // 2 minuti }); if(location.pathname.includes('/watch/')){ $('#player .cover, div.server ul a, #controls > div.prevnext').on('click', function(){ window.scrollTo(0, 133); var r=$('#controls .resize'); if(r.text().includes("Espandi")){ r.click(); } setTimeout(function(){ $('#controls .light').click(); }, 700); }); } function getNotify() { $.ajax({ url: 'https://www.animeworld.tv/user/ajax/menu-bar', dataType: 'json', success: function(data) { $('#notification').html(data.notify); $('#notification').find('ul.notification div.empty-notification')[0].innerText += ' (last update '+(new Date().toLocaleTimeString())+')'; }, error: function(data) { $('#notification > div > div.dropdown > div').css('color', 'red').attr('title', 'Errore di connessione'); } }); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址