Greasy Fork

Greasy Fork is available in English.

视频vip解析

视频解析,无广告,全网vip视频解析,无需再购买视频会员,好用到飞起。

当前为 2021-04-12 提交的版本,查看 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         视频vip解析
// @namespace    小啦啦哈
// @version      1.0
// @description  视频解析,无广告,全网vip视频解析,无需再购买视频会员,好用到飞起。
// @author       小啦啦哈
// @match        https://v.qq.com/x/cover/*
// @match        https://www.iqiyi.com/v_*
// @match        https://v.youku.com/v_show/id_*
// @match        https://www.mgtv.com/b/*
// @match        https://www.bilibili.com/bangumi/play/ep*
// @grant        unsafeWindow
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
          window.onload=function(){
            var body=document.getElementsByTagName("body")[0]
            var div=document.createElement("div")
            div.style.width=75+"px"
            div.style.height=25+"px"
            div.style.backgroundColor="bisque"
            div.style.position="absolute"
            div.style.top=300+"px"
            div.style.left=70+"px"
            div.style.zIndex=999
            div.style.float="left"
            div.style.borderRadius=50+"PX"
            var a=document.createElement("a")
            a.style.display="block"
            a.style.width=100+"%"
            a.style.height=100+"%"
            a.innerHTML="解析视频"
            a.style.textAlign="center"
            a.style.lineHeight=25+"px"
            a.style.textDecoration="none"
            a.style.fontSize=14+"px"
            a.style.color="black"
            var url=location.href
            a.href="https://jsap.attakids.com/?url="+url
            div.appendChild(a)
            body.appendChild(div)

        }

})();