// ==UserScript== // @name 【VIP追剧神器】【free】支持多平台(流畅不卡顿)【爱奇艺】【腾讯视频】【优酷土豆】【芒果TV】【乐视视频】【哔哩哔哩】【搜狐视频】等常见视频平台 // @namespace http://tampermonkey.net/ // @version 1.1.3 // @description ▶在线VIP视频解析工具(增强版)【free】支持多平台<在不看VIP电影时关闭脚本>【爱奇艺】【腾讯视频】【优酷土豆】【芒果TV】【乐视视频】【哔哩哔哩】【搜狐视频】等常见视频平台。制作不易,熬穿了不知道多少个夜晚,您的赞赏会是刺破黑暗苍穹的亮光照亮我前行的路❗❗❗有问题可加微信咨询:Why15236444193[学长也还有学业在身,如果加微信未能及时回复,请多多包涵哈!! // @author 伏黑甚而 // @match *://*/* // @grant none // @run-at document-end // ==/UserScript== (function() { 'use strict'; // 创建悬浮窗样式 const style = document.createElement('style'); style.textContent = ` #vip-container { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 480px; height: 380px; background: #f8f9fa; border: 1px solid #007bff; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); z-index: 9999; font-family: "微软雅黑", sans-serif; padding: 20px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: move; user-select: none; backdrop-filter: blur(4px); } .window-controls { position: absolute; top: 5px; right: 5px; display: flex; gap: 8px; } .control-btn { width: 24px; height: 24px; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; color: white; transition: transform 0.2s ease, opacity 0.2s ease; box-shadow: 0 2px 4px rgba(0,0,0,0.1); } .close-btn { background: #ff5f57; } .min-btn { background: #ffbd2e; } .max-btn { background: #28c940; } .control-btn:hover { filter: brightness(0.9); } .input-group { margin: 15px; display: flex; align-items: center; gap: 10px; } .platform-buttons { display: flex; justify-content: center; gap: 20px; margin: 20px 0; } .donate-section { text-align: center; margin-top: 20px; } #qr-image { width: 140px; height: 141px; margin: 10px auto; display: block; } button { padding: 8px 20px; background: #007bff; color: white; border: none; border-radius: 5px; cursor: pointer; transition: background 0.3s; } button:hover { background: #0056b3; } /* 输入框样式 */ #vip-container input[type="text"], .parse-container input[type="text"] { flex: 1; padding: 8px; border: 1px solid #333333 !important; border-radius: 5px; background: #000000 !important; color: #ffffff !important; caret-color: #ffffff; } /* 输入框聚焦状态 */ #vip-container input[type="text"]:focus, .parse-container input[type="text"]:focus { outline: none; box-shadow: 0 0 0 2px rgba(0,123,255,0.3); } .warning { color: red; text-align: center; font-size: 12px; margin-top: 10px; } .collapsed { height: 60px !important; overflow: hidden; opacity: 0.9; } .collapsed .input-group, .collapsed .platform-buttons, .collapsed .donate-section, .collapsed .warning { display: none; } .collapsed .window-controls { top: 18px; } `; document.head.appendChild(style); // 创建容器并添加控制按钮 const container = document.createElement('div'); container.id = 'vip-container'; container.innerHTML = `
提示:本案例仅供学习使用,不可作为他用。
`; // 添加容器到页面 document.body.appendChild(container); // 窗口控制功能 let isMaximized = false; let originalSize = { width: '480px', height: '380px' }; container.querySelector('.min-btn').addEventListener('click', () => { container.classList.toggle('collapsed'); if (container.classList.contains('collapsed')) { container.style.transform = `translate(${currentX}px, ${currentY}px) scale(0.95)`; } else { container.style.transform = `translate(${currentX}px, ${currentY}px) scale(1)`; } }); container.querySelector('.max-btn').addEventListener('click', () => { if (!isMaximized) { originalSize = { width: container.style.width || '480px', height: container.style.height || '380px' }; container.style.width = '95vw'; container.style.height = '95vh'; isMaximized = true; } else { container.style.width = originalSize.width; container.style.height = originalSize.height; isMaximized = false; } }); container.querySelector('.close-btn').addEventListener('click', () => { container.remove(); }); // 功能函数 function clearInput() { document.getElementById('video-url').value = ''; } function openPlatform(platform) { const urls = { iqiyi: 'https://www.iqiyi.com', tencent: 'https://v.qq.com', youku: 'https://www.youku.com' }; window.open(urls[platform], '_blank'); } window.playVideo = function() { const url = document.getElementById('video-url').value.trim(); if (url) { // 使用Python版原始解析接口 const api = 'https://jx.xmflv.cc/?url='; const fullUrl = api + encodeURIComponent(url); // 创建隐藏iframe避免弹窗拦截 const iframe = document.createElement('iframe'); iframe.style.display = 'none'; document.body.appendChild(iframe); iframe.src = fullUrl; // 3秒后跳转播放页 setTimeout(() => { window.location.href = fullUrl; }, 3000); } } // 优化后的拖拽功能 let isDragging = false; let offsetX = 0; let offsetY = 0; container.addEventListener('mousedown', (e) => { if (e.target.closest('button, input')) return; isDragging = true; offsetX = e.clientX - container.offsetLeft; offsetY = e.clientY - container.offsetTop; }); document.addEventListener('mousemove', (e) => { if (isDragging) { container.style.left = (e.clientX - offsetX) + 'px'; container.style.top = (e.clientY - offsetY) + 'px'; container.style.transform = 'none'; // 清除原有transform } }); document.addEventListener('mouseup', () => { isDragging = false; }); })();