您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
替换HTML5播放器
当前为
// ==UserScript== // @name ACFUN H5 TDPLAYER播放器 // @namespace http://tampermonkey.net/ // @description 替换HTML5播放器 // @author 疯狂减肥带 // @match http://www.acfun.cn/* // @match http://www.acfun.tv/* // @match http://www.aixifan.com/* // @match http://aixifan.com/* // @match http://acfun.tv/* // @grant none // @version 0.0.1.20170629135354 // ==/UserScript== (function() { var thisurl = window.location.href; var tmp = thisurl.split("/"); thisac = tmp[tmp.length - 1]; var script = document.createElement("script"); script.setAttribute("type", "text/javascript"); script.setAttribute("charset", "UTF-8"); script.setAttribute('src', 'https://app.haotown.cn/td/tdplayer.min.js?v=2.8.0'); document.head.appendChild(script); script.onload = function() { if (thisac.indexOf("ac") == 0) { var info=document.querySelector('#pageInfo'); if (info) { if (info.getAttribute("data-from")=='zhuzhan') { console.log('ac源视频'); tdvidplay(document.querySelector('#player'),info.getAttribute("data-vid"),info.getAttribute("data-pic")) }else if(info.getAttribute("data-from")=='youku'){ tdyoukuplay(document.querySelector('#player'),document.querySelector('#pageInfo').getAttribute("data-aid")) } } } else if(thisac.indexOf('ab')==0){ var e=document.querySelector('.primary'); if (e.getAttribute("data-from")=='ac') { document.querySelector('.ui-draggable').innerHTML=null; tdvidplay(document.querySelector('.ui-draggable'),e.getAttribute("data-vid")) }else{ console.log("不支持。 /(ㄒoㄒ)/~~"); } } } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址