您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
支持多个平台视频解析和网易云音乐免费歌曲解析下载
当前为
// ==UserScript== // @name 音视频解析 // @namespace http://tampermonkey.net/ // @version 1.4.3 // @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]}`; } })();