开课吧视频下载

获取开课吧视频链接自动跳转m3u8下载

// ==UserScript==
// @name         开课吧视频下载
// @namespace    https://juejin.cn/user/1063982988277565
// @version      0.1
// @description  获取开课吧视频链接自动跳转m3u8下载   
// @author       mzt
// @match        https://*.kaikeba.com/*
// @require  https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.j
// @grant        none
// ==/UserScript==
window.onload = function () {
  if (!window.performance && !window.performance.getEntries) {
    return false;
  }
  var result = "";
  var videoUrl = []
  setTimeout(() => {
    let arr = window.performance.getEntries();
    arr.forEach((item, index) => {
      if (
        item.initiatorType === "xmlhttprequest" ||
        item.initiatorType === "fetch"
      ) {
        if (item.name.indexOf("detail") > -1) {
          result = arr[index].name;
        }
      }
    });
    $.ajax({
        type: "GET",
        url: result,
        data: "",
        dataType: "json",
        success: function (res) {
            videoUrl = res.data.mediaMetaInfo.videoGroup
            console.log('视频链接',videoUrl[0].playURL)
            window.open('https://blog.luckly-mjw.cn/tool-show/m3u8-downloader/index.html?source='+videoUrl[0].playURL)
        }
    });
  }, 1000);
};

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址