视频VIP替换

直接在视频页查看会员视频

目前为 2018-04-24 提交的版本。查看 最新版本

// ==UserScript==
// @name		视频VIP替换
// @namespace	http://tampermonkey.net/
// @version		0.2
// @description	直接在视频页查看会员视频
// @author		You
// @match		*.iqiyi.com/v*
// @grant		none
// @run-at		document-end
// @require		https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js
// ==/UserScript==

(function() {
    'use strict';

    // 替换播放器
    function replace_original_player() {
        console.log('ready to replace');
        // 生成替换源
        var current_url = window.location.href;
        var request_url = '<iframe id="play_iframe" allowfullscreen="true" ' +
			'style="background-color: #dff0d8;" width="100%" height="100%" ' +
			'allowtransparency="true" frameborder="0" scrolling="no" ' +
			'src="http://api.baiyug.cn/vip/index.php?url=' + current_url + '"></iframe>';
		console.log(request_url);
		$('div.pw-video').empty().html(request_url);

    };
    setTimeout(function(){
		replace_original_player();
	}, 1000);

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址