Greasy Fork

来自缓存

Greasy Fork is available in English.

小狸视频

视频解析脚本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         小狸视频 
// @namespace    Violentmonkey Scripts
// @homepage     http://shiyulanxuan.gitee.io/beaver_videos/#/
// @description  视频解析脚本
// @supportURL   http://shiyulanxuan.gitee.io/beaver_videos/#/
// @match        *://*/*
// @include      *://m.youku.com/v*
// @include      *://m.youku.com/a*
// @include      *://v.youku.com/v_*
// @include      *://*.iqiyi.com/v_*
// @include      *://*.iqiyi.com/w_*
// @include      *://*.iqiyi.com/a_*
// @include      *://*.iqiyi.com/adv*
// @include      *v.qq.com/x/cover/*
// @include      *v.qq.com/x/page/*
// @include      *v.qq.com/*play*
// @include      *v.qq.com/cover*
// @grant        none
// @version      1.0
// @author       落花人独立
// @description  2020/8/15 下午10:48:59
// ==/UserScript==
  
window.setTimeout(function() {
  var url = window.location.href;
  var newElement=`<iframe src="https://vip.mpos.ren/v/?url=${url}" height="100%" width="100%" scrolling="no"></iframe>`;
  var tenvideo_player = document.getElementById('tenvideo_player');
  if(tenvideo_player)
  {
    tenvideo_player.innerHTML=newElement;
    alert("【腾讯视频】正在解析...");
  }
  else if(url.indexOf("www.iqiyi.com")>=0)
  {
      alert("爱奇艺");
  }
}, 5000);