为优化做准备

This commit is contained in:
lingling 2024-09-24 12:12:32 +08:00
parent 21776380d3
commit a442efffc8
2 changed files with 12 additions and 49 deletions

View File

@ -63,10 +63,6 @@ $(function () {
return true; return true;
}); });
// async function text() {
// let a = await createTab("https://www.youtube.com/", "youtube");
// return a;
// }
async function youtube_shorts() { async function youtube_shorts() {
let a = await createTab( let a = await createTab(
"https://www.youtube.com/shorts/", "https://www.youtube.com/shorts/",
@ -105,13 +101,13 @@ $(function () {
//函数队列 //函数队列
let queue = []; let queue = [];
// queue.push(play_finance);//好像js注入不进去 // queue.push(play_finance);//好像js注入不进去
queue.push(shopping); // queue.push(shopping);
queue.push(calendar); // queue.push(calendar);
queue.push(mail); // queue.push(mail);
// queue.push(youtube); queue.push(youtube);
queue.push(play_google); // queue.push(play_google);
queue.push(news_google); // queue.push(news_google);
queue.push(youtube_shorts); // queue.push(youtube_shorts);
//乱序执行 此处有问题 //乱序执行 此处有问题
// queue=shuffleArray(queue) // queue=shuffleArray(queue)
//当前执行的队列索引 //当前执行的队列索引

View File

@ -305,44 +305,11 @@ async function youtube_shorts2(r, id) {
async function youtube(r, id) { async function youtube(r, id) {
// 点击长视频观看 // 点击长视频观看
await delay(5); await delay(5);
//点击订阅 如果已经订阅过了就不用点 let vido_array=$(".yt-core-image.yt-core-image--fill-parent-height.yt-core-image--fill-parent-width.yt-core-image--content-mode-scale-aspect-fill.yt-core-image--loaded")
if ( vido_array[getRandomInt(0,vido_array.length-1)].click()
$( await delay(5)
"div ytd-subscribe-button-renderer yt-smartimation yt-button-shape button" $(".yt-spec-button-shape-next.yt-spec-button-shape-next--tonal.yt-spec-button-shape-next--mono.yt-spec-button-shape-next--size-m.yt-spec-button-shape-next--icon-leading.yt-spec-button-shape-next--segmented-start").eq(0).click()
) $(".yt-spec-button-shape-next.yt-spec-button-shape-next--filled.yt-spec-button-shape-next--mono.yt-spec-button-shape-next--size-m").eq(0).click()
.eq(0)
.is(".yt-spec-button-shape-next--filled")
)
$(
"div ytd-subscribe-button-renderer yt-smartimation yt-button-shape button"
)
.eq(0)
.click();
// 点赞
if (
$(
"div ytd-segmented-like-dislike-button-renderer div ytd-toggle-button-renderer yt-button-shape button"
).is(".yt-spec-button-shape-next--tonal")
)
$(
"div ytd-segmented-like-dislike-button-renderer div ytd-toggle-button-renderer yt-button-shape button"
)
.eq(0)
.click();
$("button .yt-spec-button-shape-next--size-m").click();
next_vido = Math.round(
Math.random() *
$("contents ytd-compact-video-renderer div ytd-thumbnail a").length
);
if (
next_vido ==
$("contents ytd-compact-video-renderer div ytd-thumbnail a").length
)
next_vido = next_vido - 1;
$("#contents ytd-compact-video-renderer div ytd-thumbnail a")
.eq(next_vido)[0]
.click();
} }
function ServiceLogin(r, id) { function ServiceLogin(r, id) {