Greasy Fork is available in English.
支持多个平台视频解析
当前为
// ==UserScript==
// @name 音视频解析
// @namespace http://tampermonkey.net/
// @version 1.4.2
// @description 支持多个平台视频解析
// @author Yutes
// @match *://*.163.com/*/song?id=*
// @match *://*.iqiyi.com/v*
// @match *://*.bilibili.com/bangumi/play/*
// @match *://*.youku.com/alipay_video/id_*
// @match *://*.v.qq.com/x/*/play?cid=*
// @match *://*.acfun.cn/v/?ab=*
// @match *://play.tudou.com/*
// @match *://*.sohu.com/v*
// @match *://*.le.com/vplay_*
// @match *://*.pptv.com/show/*
// @match *://*.ixigua.com/*?logTag=*
// @match *://*.fun.tv/*play/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const videoSites = {
"bilibili.com": "https://jx.xymp4.cc/?url=",
"fun.tv": "https://jx.xymp4.cc/?url=",
"youku.com": "https://jx.xmflv.com/?url=",
"v.qq.com": "https://jx.xmflv.com/?url=",
"iqiyi.com": "https://jx.xmflv.com/?url=",
"tudou.com": "https://jx.xmflv.com/?url=",
"sohu.com": "https://jx.xmflv.com/?url=",
"le.com": "https://jx.xmflv.com/?url=",
"pptv.com": "https://jx.xmflv.com/?url=",
"ixigua.com": "https://jx.xmflv.com/?url=",
"acfun.cn": "https://jx.playerjy.com/?url="
};
const url = window.location.href;
// 视频平台解析
for (const site in videoSites) {
if (url.includes(site)) {
if (confirm('确定播放?')) {
window.location.href = videoSites[site] + encodeURIComponent(url);
}
return;
}
}
// 网易云音乐解析
const match = url.match(/id=(\d+)/);
if (match && confirm('确定播放?')) {
window.location.href = `http://music.163.com/song/media/outer/url?id=${match[1]}`;
}
})();