Quick parsing of VIP videos

解析vip视频

目前為 2023-08-12 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Quick parsing of VIP videos
  3. // @namespace autumnwater
  4. // @version 0.1
  5. // @description 解析vip视频
  6. // @author autumnwater
  7. // @license GPL
  8. // @match *://v.qq.com/x/cover*
  9. // @match *://www.iqiyi.com/v*
  10. // @match *://www.mgtv.com/b/*
  11. // @require https://code.jquery.com/jquery-3.7.0.min.js
  12. // @icon https://v.qq.com/favicon.ico
  13. // @grant none
  14. // ==/UserScript==
  15.  
  16. (function() {
  17. 'use strict';
  18.  
  19. // Your code here...
  20. var btnStr = '<input id="btnStr" type="button" value="解析" style="position: absolute; width: 40px; height: 40px; z-index: 9999; left: 0px; top: 60px; color: white; background: red; cursor:pointer">';
  21. $("body").append(btnStr);
  22. $("#btnStr").hover(function(){
  23. $("#btnStr").css("background-color","gray");
  24. },function(){
  25. $("#btnStr").css("background-color","red");
  26. });
  27. $("#btnStr").click(function(){
  28. var url = window.location.href;
  29. var videoUrl = "https://jx.jsonplayer.com/player/?url=" + url;
  30. window.location.href=videoUrl;
  31. });
  32. })();

QingJ © 2025

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