您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Watch videos on VeeHD without the need for flashplayer
// ==UserScript== // @name VeeHD Native HTML5 Video Player // @namespace stoisch_bauer // @version 0.3 // @description Watch videos on VeeHD without the need for flashplayer // @author stoisch // @require https://greasyfork.org/scripts/2199-waitforkeyelements/code/waitForKeyElements.js?version=6349 // @match http://veehd.com/* // ==/UserScript== /* jshint -W097 */ 'use strict'; // Initiate Download document.querySelector('div[class="uv"]').click(); // Wait on iframe... waitForKeyElements ("iframe[src*='/vpi']", run); function run() { // 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 :)"); }