快速解析

The interface is collected by the network and not captured by the user The oil monkey script written by Vue is easy to understand. The interface is collected by the network and not crawled by yourself

  1. // ==UserScript==
  2. // @name 快速解析
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0.0
  5. // @license MIT
  6. // @description The interface is collected by the network and not captured by the user The oil monkey script written by Vue is easy to understand. The interface is collected by the network and not crawled by yourself
  7. // @include *://*.youku.com/v_*
  8. // @include *://*.iqiyi.com/v_*
  9. // @include *://*.iqiyi.com/w_*
  10. // @include *://*.iqiyi.com/a_*
  11. // @include *://*.le.com/ptv/vplay/*
  12. // @include *://v.qq.com/x/cover/*
  13. // @include *://v.qq.com/x/page/*
  14. // @include *://v.qq.com/tv/*
  15. // @include *://*.tudou.com/listplay/*
  16. // @include *://*.tudou.com/albumplay/*
  17. // @include *://*.tudou.com/programs/view/*
  18. // @include *://*.mgtv.com/b/*
  19. // @include *://film.sohu.com/album/*
  20. // @include *://tv.sohu.com/v/*
  21. // @include *://*.baofeng.com/play/*
  22. // @include *://vip.pptv.com/show/*
  23. // @include *://v.pptv.com/show/*
  24. // @include *://www.le.com/ptv/vplay/*
  25. // @include *://www.wasu.cn/Play/show/*
  26. // @include *://*.1905.com/video/*
  27. // @include *://*.1905.com/play/*
  28. // @include *://*.1905.com/*/play/*
  29. // @include *://www.miguvideo.com/mgs/*
  30. //---------------------------------------------------
  31. // @include *://m.v.qq.com/x/cover/*
  32. // @include *://m.v.qq.com/x/page/*
  33. // @include *://m.v.qq.com/*
  34. // @include *://m.iqiyi.com/v_*
  35. // @include *://m.iqiyi.com/w_*
  36. // @include *://m.iqiyi.com/a_*
  37. // @include *://m.youku.com/alipay_video/*
  38. // @include *://https://m.youku.com/video/id_*
  39. // @include *://m.mgtv.com/b/*
  40. // @include *://m.tv.sohu.com/v/*
  41. // @include *://m.film.sohu.com/album/*
  42. // @include *://m.le.com/ptv/vplay/*
  43. // @include *://m.pptv.com/show/*
  44. // @include *://m.acfun.cn/v/*
  45. // @include *://m.bilibili.com/video/*
  46. // @include *://m.bilibili.com/anime/*
  47. // @include *://m.bilibili.com/bangumi/play/*
  48. // @include *://m.wasu.cn/Play/show/*
  49. //---------------------------------------------------
  50. // @include *://www.youtube.com
  51. // @include *://www.youtube.com/
  52. // @include *://www.youtube.com/watch*
  53. // @include *://www.facebook.com/*
  54. // @include *://yt1s.com/facebook-downloader
  55. // @original-script https://gf.qytechs.cn/zh-CN/scripts/447245-%E5%BF%AB%E9%80%9F%E8%A7%A3%E6%9E%90
  56. // @icon https://g.csdnimg.cn/static/logo/favicon32.ico
  57. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==、
  58. // @require https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js
  59. // @grant none
  60. // ==/UserScript==
  61. ;(function () {
  62. "use strict"
  63. let script = document.createElement("script")
  64. script.setAttribute("type", "text/javascript")
  65. script.src = "https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"
  66. document.documentElement.appendChild(script)
  67. window.onload = () => {
  68. let text = `
  69. <div id="fastParsing">
  70. <button
  71. @click="showModel"
  72. v-show="!isModel"
  73. style="
  74. position: fixed;
  75. padding: 5px 0px;
  76. top: 30vh;
  77. text-align: center;
  78. color: #3582fb;
  79. border: 1px solid #d7e6fe;
  80. background-color: #fff;
  81. border-radius: 4px;
  82. transition: 0.3s all ease;
  83. box-shadow: rgb(61 61 61 / 25%) 0px 0px 10px;
  84. left: 0px;
  85. background: rgb(255, 255, 255);
  86. text-align: center;
  87. z-index: 99999;
  88. cursor: pointer;
  89. "
  90. >
  91. 快速解析
  92. </button>
  93. <div
  94. ref="wapper"
  95. v-show="isModel"
  96. style="
  97. position: fixed;
  98. padding: 5px 0;
  99. top: 30vh;
  100. overflow: hidden;
  101. box-shadow: 0 0 10px rgb(61 61 61 / 25%);
  102. left: 0;
  103. background: #fff;
  104. text-align: center;
  105. width: 30vw;
  106. z-index: 99999;
  107. "
  108. >
  109. <h1 style="font-size: initial; font-weight: bold">快速解析 v1.0.0</h1>
  110. <p style="margin: 5px">
  111. 注:请在视频播放页面点击解析,解析失败切换源试试🌹
  112. </p>
  113. <span
  114. style="
  115. position: absolute;
  116. top: 0;
  117. right: 0;
  118. padding: 5px;
  119. width: 20px;
  120. height: 20px;
  121. line-height: 20px;
  122. color: #000;
  123. cursor: pointer;
  124. font-weight: bold;
  125. text-align: center;
  126. "
  127. @click.stop="onClose"
  128. >X</span
  129. >
  130. <div>
  131. <button
  132. style="
  133. margin: 3px;
  134. height: 30px;
  135. line-height: 30px;
  136. text-align: center;
  137. color: #3582fb;
  138. cursor: pointer;
  139. border: 1px solid #d7e6fe;
  140. background-color: #fff;
  141. border-radius: 4px;
  142. transition: 0.3s all ease;
  143. "
  144. v-for="(item,index) in originalInterfaceList"
  145. @click="parseVideo(item.url)"
  146. :key="item.name+index"
  147. >
  148. {{ item.name }}
  149. </button>
  150. </div>
  151. </div>
  152. </div>`
  153. const originalInterfaceList = [
  154. { name: "纯净/B站", url: "https://z1.m1907.cn/?jx=", showType: 3 },
  155. { name: "高速接口", url: "https://jsap.attakids.com/?url=", showType: 3 },
  156. {
  157. name: "综合/B站",
  158. url: "https://vip.parwix.com:4433/player/?url=",
  159. showType: 3,
  160. },
  161. { name: "OK解析", url: "https://okjx.cc/?url=", showType: 3 },
  162. { name: "夜幕", url: "https://www.yemu.xyz/?url=", showType: 3 },
  163. { name: "爱豆", url: "https://jx.aidouer.net/?url=", showType: 1 },
  164. { name: "虾米", url: "https://jx.xmflv.com/?url=", showType: 1 },
  165. { name: "M3U8.TV", url: "https://jx.m3u8.tv/jiexi/?url=", showType: 3 },
  166. { name: "人人迷", url: "https://jx.blbo.cc:4433/?url=", showType: 3 },
  167. { name: "全民", url: "https://jx.blbo.cc:4433/?url=", showType: 3 },
  168. { name: "七哥", url: "https://jx.mmkv.cn/tv.php?url=", showType: 3 },
  169. { name: "冰豆", url: "https://api.qianqi.net/vip/?url=", showType: 3 },
  170. { name: "迪奥", url: "https://123.1dior.cn/?url=", showType: 1 },
  171. { name: "CK", url: "https://www.ckplayer.vip/jiexi/?url=", showType: 1 },
  172. { name: "游艺", url: "https://api.u1o.net/?url=", showType: 1 },
  173. { name: "LE", url: "https://lecurl.cn/?url=", showType: 1 },
  174. { name: "ckmov", url: "https://www.ckmov.vip/api.php?url=", showType: 1 },
  175. {
  176. name: "playerjy/B站",
  177. url: "https://jx.playerjy.com/?url=",
  178. showType: 3,
  179. },
  180. {
  181. name: "ccyjjd",
  182. url: "https://ckmov.ccyjjd.com/ckmov/?url=",
  183. showType: 1,
  184. },
  185. { name: "爱豆", url: "https://jx.aidouer.net/?url=", showType: 1 },
  186. { name: "诺诺", url: "https://www.ckmov.com/?url=", showType: 1 },
  187. { name: "H8", url: "https://www.h8jx.com/jiexi.php?url=", showType: 1 },
  188. { name: "BL", url: "https://vip.bljiex.com/?v=", showType: 1 },
  189. { name: "解析la", url: "https://api.jiexi.la/?url=", showType: 1 },
  190. { name: "MUTV", url: "https://jiexi.janan.net/jiexi/?url=", showType: 1 },
  191. { name: "MAO", url: "https://www.mtosz.com/m3u8.php?url=", showType: 1 },
  192. {
  193. name: "老板",
  194. url: "https://vip.laobandq.com/jiexi.php?url=",
  195. showType: 1,
  196. },
  197. {
  198. name: "盘古",
  199. url: "https://www.pangujiexi.cc/jiexi.php?url=",
  200. showType: 1,
  201. },
  202. { name: "盖世", url: "https://www.gai4.com/?url=", showType: 1 },
  203. { name: "小蒋", url: "https://www.kpezp.cn/jlexi.php?url=", showType: 1 },
  204. { name: "YiTV", url: "https://jiexi.us/?url=", showType: 1 },
  205. { name: "星空", url: "http://60jx.com/?url=", showType: 1 },
  206. { name: "0523", url: "https://go.yh0523.cn/y.cy?url=", showType: 1 },
  207. {
  208. name: "17云",
  209. url: "https://www.1717yun.com/jx/ty.php?url=",
  210. showType: 1,
  211. },
  212. { name: "4K", url: "https://jx.4kdv.com/?url=", showType: 1 },
  213. {
  214. name: "云析",
  215. url: "https://jx.yparse.com/index.php?url=",
  216. showType: 1,
  217. },
  218. { name: "8090", url: "https://www.8090g.cn/?url=", showType: 1 },
  219. { name: "江湖", url: "https://api.jhdyw.vip/?url=", showType: 1 },
  220. { name: "诺讯", url: "https://www.nxflv.com/?url=", showType: 1 },
  221. {
  222. name: "PM",
  223. url: "https://www.playm3u8.cn/jiexi.php?url=",
  224. showType: 1,
  225. },
  226. { name: "奇米", url: "https://qimihe.com/?url=", showType: 1 },
  227. { name: "思云", url: "https://jx.ap2p.cn/?url=", showType: 1 },
  228. { name: "听乐", url: "https://jx.dj6u.com/?url=", showType: 1 },
  229. { name: "aijx", url: "https://jiexi.t7g.cn/?url=", showType: 1 },
  230. { name: "52", url: "https://vip.52jiexi.top/?url=", showType: 1 },
  231. { name: "黑米", url: "https://www.myxin.top/jx/api/?url=", showType: 1 },
  232. { name: "豪华啦", url: "https://api.lhh.la/vip/?url=", showType: 1 },
  233. { name: "凉城", url: "https://jx.mw0.cc/?url=", showType: 1 },
  234. { name: "33t", url: "https://www.33tn.cn/?url=", showType: 1 },
  235. { name: "180", url: "https://jx.000180.top/jx/?url=", showType: 1 },
  236. {
  237. name: "无名",
  238. url: "https://www.administratorw.com/video.php?url=",
  239. showType: 1,
  240. },
  241. { name: "黑云", url: "https://jiexi.380k.com/?url=", showType: 1 },
  242. { name: "九八", url: "https://jx.youyitv.com/?url=", showType: 1 },
  243. { name: "听乐(B站)", url: "https://jx.dj6u.com/?url=", showType: 2 },
  244. ]
  245. var el = document.createElement("div")
  246. el.innerHTML = text
  247. document.body.append(el)
  248. new Vue({
  249. el: "#fastParsing",
  250. data: {
  251. isModel: false,
  252. originalInterfaceList,
  253. },
  254. mounted() {},
  255. methods: {
  256. parseVideo(url) {
  257. window.open(url + location.href)
  258. },
  259. showModel() {
  260. this.isModel = true
  261. this.$refs.wapper.style.width = "30vw"
  262. },
  263. onClose() {
  264. this.isModel = false
  265. this.$refs.wapper.style.width = "0vw"
  266. },
  267. },
  268. })
  269. }
  270. })()

QingJ © 2025

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