// ==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 = `