// ==UserScript== // @name New Userscript GH2K-1 // @namespace https://docs.scriptcat.org/ // @version 0.1.1 // @description 自用脚本 // @author You // @match *://v.qq.com/x/cover/* // @icon https://www.google.com/s2/favicons?sz=64&domain=v.qq.com // @grant none // ==/UserScript== (function () { 'use strict'; function changeVideoUrl() { const baseUrl = window.location.href; const parseApi = "https://jx.xmflv.cc/?url="; const iframeHtml = ``; const playerContainer = document.querySelector("#player-container"); if (!playerContainer) { console.error("未找到播放器容器元素"); } playerContainer.innerHTML = iframeHtml; } function removeModal() { const modal = document.querySelector(".panel-tip-pay"); if (modal) { modal.remove(); } } window.addEventListener('load', changeVideoUrl); window.setInterval(removeModal, 1000); })();