Sleazy Fork is available in English.

移除播放前跳转

点击播放前总是打开新的标签页,此脚本移除跳转行为,可以直接播放

// ==UserScript==
// @name         移除播放前跳转
// @namespace    missav
// @version      2024-06-08
// @description  点击播放前总是打开新的标签页,此脚本移除跳转行为,可以直接播放
// @author       You
// @match        https://missav.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=missav.com
// @grant        none
// @license      MPL-2.0
// ==/UserScript==

(function() {
    'use strict';
    window.addEventListener("load", function(){
        let tagetEle = document.querySelector(".plyr").parentNode;
        tagetEle.removeAttribute("@click")
        tagetEle.removeAttribute('@keyup.space.window');
    });
})();