Greasy Fork is available in English.
视频解析,无广告,全网vip视频解析,无需再购买视频会员,好用到飞起。
当前为
// ==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)
}
})();