您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Watch videos on VeeHD without the need for flashplayer
当前为
// ==UserScript== // @name VeeHD Native HTML5 Video Player // @namespace http://tampermonkey.net/ // @version 0.2 // @description Watch videos on VeeHD without the need for flashplayer // @author stoisch // @match http://veehd.com/* // ==/UserScript== /* jshint -W097 */ 'use strict'; // Initiate Download document.querySelector('div[class="uv"]').click(); // Delay Action setTimeout( function () { // Grab link from iframe var src = document.getElementById('playeriframe').contentDocument.body.innerHTML.match(/href=\W(.*?.mp4)\W>/)[1]; // Create html5 player var html5_video = document.createElement("VIDEO"); html5_video.setAttribute("src",src); html5_video.setAttribute("width", "970"); html5_video.setAttribute("height", "665"); html5_video.setAttribute("controls", "controls"); // Find and replace frame document.getElementById("p").appendChild(html5_video); var videoHolderElement = document.querySelector('#p'); videoHolderElement.parentElement.replaceChild(html5_video, videoHolderElement); console.log("Replaced :)"); }, 5000 );
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址