亚洲审美车(极品比较多)

破解网站时长限制,需要自己注册登录

As of 2023-02-22. See the latest version.

// ==UserScript==
// @name         亚洲审美车(极品比较多)
// @namespace    http://tampermonkey.net/
// @version      3.0.1
// @license      MIT
// @description  破解网站时长限制,需要自己注册登录
// @author       总是怕来不及
// @match        https://theav101.com/*
// @match        https://theav.fun/*
// @match        https://theav120.com/*
// @match        https://theav108.com/*
// @match        https://theav109.com/*
// @icon         https://theav109.com/static/logo.png
// @grant        none
// ==/UserScript==

async function find(){
    document.querySelector('.table').remove()
    Playerjs({ id: "player", file: player.api("hls").url.split('?')[0], autoplay: 1 });
}

function isVideo(){
    let isvideo = 0
    let info = document.location
    let path = info.pathname
    let list = path.split('/')
    let i = null
    for (let i in list){
         if (list[i]==='videos'){
            isvideo = 1
         }
    }
    return isvideo
}

(function() {
    'use strict';
    let login = document.getElementById('login')
    if (login){
        alert('使用脚本前,请手动注册登录')
    }
    else{
        let p = isVideo()
        if (p){
            setTimeout(async () =>{
                let url = await find()
                }, 1000)
        }
    }

})();