小狸视频

视频解析脚本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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);