您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Just a simple script to always select Ger-Sub cause its annoying
// ==UserScript== // @name Always select Ger-Sub // @icon https://www.google.com/s2/favicons?domain=aniworld.to // @namespace https://makaze.de // @version 1.5 // @description Just a simple script to always select Ger-Sub cause its annoying // @author IMakaze // // @include *://anicloud.*/anime/stream/* // @include *://aniworld.*/anime/stream/* // // @require http://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.js // @run-at document-start // ==/UserScript== document.onreadystatechange = function () { if (document.readyState === "interactive") { var dataLangKey3 = $("img[data-lang-key=3]").not(".selectedLanguage"); // dataLangKey if (dataLangKey3.length > 0) { dataLangKey3[0].click(); } } }