您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Automatically set server to OServer (the superior server) on AnimeHeaven.ru
// ==UserScript== // @name Auto OServer for AnimeHeaven.ru // @version 0.3 // @description Automatically set server to OServer (the superior server) on AnimeHeaven.ru // @author Lewis5441 // @match https://animeheaven.ru/watch/* // @grant none // @namespace http://greasyfork.icu/users/684913 // ==/UserScript== (function() { 'use strict'; $("#selectServer").attr("atrl", "oserver"); $("select option").filter(function() { //may want to use $.trim in here return $(this).text().includes("oserver"); }).prop('selected', true); })();