您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically select Hserver as the default (change hserver to any server you want)
// ==UserScript== // @name Kissanime (Hserver) as Default or any else server // @namespace I don't have one // @version 0.1 // @description Automatically select Hserver as the default (change hserver to any server you want) // @author MOC (Me Of Course) // @match https://kissanime.com.ru/* // @icon https://www.google.com/s2/favicons?sz=64&domain=kissanime.com.ru // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // Get the select element with id "selectServer" if (document.getElementById("selectServer")){ var selectServer = document.getElementById("selectServer"); } // Set the hserver option as the selected option if (selectServer.options[selectServer.selectedIndex].getAttribute("sv") !== "hserver"){ for (var i = 0; i < selectServer.options.length; i++) { if (selectServer.options[i].getAttribute("sv") === "hserver") { selectServer.options[i].selected = true; break; } } } // Simulate a click on the select element to trigger the onchange event var event = new Event("change"); selectServer.dispatchEvent(event); })();