您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
腾讯视频快捷跳转到欧乐影院、唐人街影院
// ==UserScript== // @name 白水腾讯视频跳转 // @namespace https://gf.qytechs.cn/zh-CN/users/1390554-baishui1134 // @version 0.2.0 // @description 腾讯视频快捷跳转到欧乐影院、唐人街影院 // @author You // @match https://v.qq.com/x/* // @icon https://www.google.com/s2/favicons?sz=64&domain=gf.qytechs.cn // @grant GM_addStyle // @license AGPL License // ==/UserScript== (function() { 'use strict'; GM_addStyle( ".tiaozhuan{margin:5px; background-color: #008CBA;border: none;color: white;border-radius: 16px;padding: 5px 15px;text-align: center;text-decoration: none;display: inline-block;font-size: 12px;transition-duration: 0.4s;cursor: pointer;}" ); GM_addStyle( ".tiaozhuan:hover{background-color:red}" ); const title = document.querySelector(".playlist-intro__title").innerText; const tname = document.querySelector(".playlist-intro__title"); const sourceBox = document.createElement("div"); tname.insertAdjacentElement("beforebegin", sourceBox); const buttons = [ { name: "欧乐影院", url: "https://www.olehdtv.com/index.php/vod/search/wd/" }, { name: "唐人街影院", url: "https://www.trjvod.com/index.php/vod/search.html?wd=", }, ]; let html = ""; buttons.forEach((item) => { html += `<button class="tiaozhuan" data-url="${item.url}">${item.name}</button>`; }); sourceBox.innerHTML = html; sourceBox.addEventListener("click", function (event) { const target = event.target; if (target.tagName === "BUTTON") { const url = target.getAttribute("data-url"); window.open(url + title); } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址