Greasy Fork

Greasy Fork is available in English.

听说这样的标题更容易让人看到__________________2020.08.16更新__________________itys VIP视频免费播放 破解VIP视频去广告 免费VIP视频解析 实用

精心收集优质视频解析接口,为大家提供爱奇艺、腾讯、优酷、芒果TV四大视频网站视频解析服务,解析接口收集于互联网,如有侵权、不妥之处请联系我们删除,敬请谅解,邮箱 [email protected] 有【安卓APP版】下载 QQ群 237903556 加群答案 itys

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         听说这样的标题更容易让人看到__________________2020.08.16更新__________________itys VIP视频免费播放 破解VIP视频去广告 免费VIP视频解析 实用
// @version      20.08.16
// @description  精心收集优质视频解析接口,为大家提供爱奇艺、腾讯、优酷、芒果TV四大视频网站视频解析服务,解析接口收集于互联网,如有侵权、不妥之处请联系我们删除,敬请谅解,邮箱 [email protected] 有【安卓APP版】下载 QQ群 237903556 加群答案 itys
// @author       itys
// @namespace    [email protected]
// @include      *.iqiyi.com/v_*
// @include      *.iqiyi.com/w_*
// @include      *.iqiyi.com/a_*
// @include      *v.qq.com/x/*
// @include      *v.qq.com/play*
// @include      *v.qq.com/cover*
// @include      *v.qq.com/tv/*
// @include      *v.youku.com/v_*
// @include      *v.youku.com/p*
// @include      *m.youku.com/v*
// @include      *m.youku.com/a*
// @include      *.mgtv.com/b/*
// @grant        none
// ==/UserScript==

(function () {
	"use strict";
	function spjx() {
		var api = new Array(
			"https://jx.yingxiangbao.cn/vip.php?url=",
			"https://www.2ajx.com/vip.php?url="
		);
		var div = document.createElement("div");
		div.innerHTML = "<div style='position:fixed;top:10%;left:0;z-index:2147483647;display:block;width:40px;height:40px;border-radius:0 20px 20px 0;background-color:#ff0080;color:#fff;text-align:center;font-size:16px;line-height:40px'>视源</div>";
		div.onclick = function () {
			window.open(
				api[Math.floor(Math.random() * api.length)] + window.location.href
			);
		};
		document.body.appendChild(div);
	}
	var url = new Array(
		".iqiyi.com/v_",
		".iqiyi.com/w_",
		".iqiyi.com/a_",
		"v.qq.com/x/",
		"v.qq.com/play",
		"v.qq.com/cover",
		"v.qq.com/tv/",
		"v.youku.com/v_",
		"v.youku.com/p",
		"m.youku.com/v",
		"m.youku.com/a",
		".mgtv.com/b/"
	);
	var i;
	for (i = 0; i < url.length; i++) {
		if (window.location.href.indexOf(url[i]) != -1) {
			spjx();
			break;
		}
	}
})();