Greasy Fork is available in English.
白嫖yyds
当前为
// ==UserScript==
// @name VipVideo
// @name:zh-CN VV视频解析
// @namespace http://tampermonkey.net/
// @version 2024-03-30
// @description 白嫖yyds
// @author N-cat
// @match *://*.zhihu.com/*
// @match *://*.bilibili.com/*
// @match *://*.youku.com/v_*
// @match *://*.youku.com/v*
// @match *://*.youku.com/a*
// @match *://*.qq.com/x/cover/*
// @match *://*.qq.com/x/page/*
// @match *://*.qq.com/play*
// @match *://*.qq.com/cover*
// @match *://*tv.sohu.com/*
// @match *://*.iqiyi.com/v_*
// @match *://*.iqiyi.com/w_*
// @match *://*.iqiyi.com/a_*
// @match *://*.le.com/ptv/vplay/*
// @match *://*.tudou.com/listplay/*
// @match *://*.tudou.com/albumplay/*
// @match *://*.tudou.com/programs/view/*
// @match *://*.tudou.com/v*
// @match *://*.mgtv.com/b/*
// @match *://*.qq.com/*
// @match *://*music.163.com/*
// @match *://*.kugou.com/*
// @match *://*.ximalaya.com/*
// @match *://*.qingting.fm/*
// @match *://*.qtfm.cn/*
// @match *://*.douyin.com/*
// @match *://*.kuaishou.com/*
// @match *://*.gifshow.com/*
// @match *://*dan-teng.top/*
// @match *://*x.com/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
'use strict';
var vipurl = "https://jx.xmflv.com/?url=";
// 添加样式
const style = `<style>
.btn{
position:fixed;
right:20px;
bottom:20px;
background-color:white!important;
width: 40px;
color:black!important;
height: 30px;
border-radius: 5px;
border:solid 3px red!important;
outline: none;
cursor:pointer;
text-align: center!important;
padding-inline: 0px!important;
font-size: 14px!important;
}
.btn:hover{
background-color:black!important;
color:white!important;
}
</style>`;
let div = document.createElement("div");
div.innerHTML += style;
document.body.append(div);
// main
var btn = document.createElement("input");
btn.setAttribute("type", "button");
btn.setAttribute("value", "解析");
btn.classList.add('btn');
document.body.append(btn);
btn.onclick = function(){
window.open(vipurl + window.location.href, '_self');
}
})();