SDU党旗飘飘

爱党爱国爱人民

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         SDU党旗飘飘
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  爱党爱国爱人民
// @author       Like_Frost
// @match        http*://202.194.7.208/*
// @icon         https://gimg2.baidu.com/image_search/src=http%3A%2F%2Frigidalchina.com%2Frepository%2Fimage%2FxYxnvZiAT4qXMja9DY7uqQ.jpg&refer=http%3A%2F%2Frigidalchina.com&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=jpeg?sec=1638414373&t=6b7a6c084bc77531404db76900e1007c
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    const init= setInterval(function(){
        if(document.querySelector("body > div.public_cont.public_cont1 > div.public_btn > a")&& /完整观看一遍/.test(document.querySelector("body > div.public_cont.public_cont1 > div.public_text > p:nth-child(2)").innerText)){
            document.querySelector("body > div.public_cont.public_cont1 > div.public_btn > a").click()
        }
        if(document.querySelector("body > div.public_cont.public_cont1 > div.public_btn > a")&& /暂停/.test(document.querySelector("body > div.public_cont.public_cont1 > div.public_text > p:nth-child(2)").innerText)){
            document.querySelector("body > div.public_cont.public_cont1 > div.public_btn > a").click()
        }
    },1000)

    const next= setInterval(function(){
        if(document.querySelector("body > div.public_cont.public_cont1 > div.public_btn > a")&& document.querySelector("body > div.wrap_video > div.video_play1 > div > div.plyr__controls > span:nth-child(3) > span.plyr__time--current").innerText == document.querySelector("body > div.wrap_video > div.video_play1 > div > div.plyr__controls > span:nth-child(4) > span.plyr__time--duration").innerText){
            document.querySelector("body > div.public_cont.public_cont1 > div.public_btn > a").click()
            clearInterval(next)
            document.querySelector(" body > div.wrap_video > div.video_fixed.video_cut > div:nth-child(5) > ul > li.video_red1").nextElementSibling.firstElementChild.click()
        }
    },200)
    // Your code here...
    })();