Sleazy Fork is available in English.

The AV Porn - 亚洲审美车

去网站时长限制,自行注册账号进行登陆

// ==UserScript==
// @name         The AV Porn - 亚洲审美车
// @version      0.1.4
// @license      GPLv3
// @description  去网站时长限制,自行注册账号进行登陆
// @author       苏K
// @match        https://theav101.com/videos*
// @match        https://theav.fun/videos*
// @namespace _
// ==/UserScript==
(function () {
    'use strict';
    if (document.getElementById('login')) {
        alert('当前未登录状态❣');
        document.getElementById('login').click();
    } else if (document.querySelector('.player-wrap')) {
        let ScriptValue = document?.querySelector(`.player-wrap > script:last-child`)?.textContent
        if (!ScriptValue) return
        /id:"(.*?)"/gm.exec(ScriptValue)
        document.querySelector('.table')?.remove()
        document.querySelector('.green')?.remove()
        document.querySelector('.rate_box.rating-container')?.remove()
        document.querySelector('.sponsor')?.remove()
        Playerjs({ id: RegExp.$1, file: player.api("hls").url.split('?')[0], autoplay: 1 });
    }
})();