※ 引述 《jones17188 (命言)》 之铭言:
: 当然我是拿来看vspodex
: 总之是那个网站
: 就是说,他能不能默认是"most viewer"?
: 我每次都要手动改,因为他默认一定是最新
: 是要用什么F12,程式码去改吗?
: 请教一下边版v豚大哥
找个脚本管理器贴上应该就可以了 我是用violentmonkey
是说为什么要用人数来排啊?
// ==UserScript==
// @name New script - holodex.net
// @namespace Violentmonkey Scripts
// @match https://holodex.net/
// @grant none
// @version 1.0
// @author -
// @description 6/28/2023, 12:11:11 AM
// ==/UserScript==
document.onreadystatechange = function () {
if (document.readyState === "complete") {
const t = setInterval(() => {
document.querySelector('.v-tab .v-btn[role="button"]')?.click();
}, 10);
new MutationObserver(function (r) {
const x = r.find((el) =>
Array.from(el.addedNodes).some((e) =>
e.querySelector('.v-input__control [role="button"]')
)
);
const y = r.find((el) =>
Array.from(el.addedNodes).some((e) =>
e.querySelector(
'[role="listbox"] [role="option"]:nth-child(2)'
)
)
);
if (x) {
clearInterval(t);
document
.querySelector('.v-input__control [role="button"]')
.click();
}
else if (y) {
document
.querySelector(
'[role="listbox"] [role="option"]:nth-child(2)'
)
.click();
document.querySelector('.v-tab .v-btn[role="button"]').click();
this.disconnect();
}
}).observe(document.getElementById("app"), {
childList: true,
});
}
};