🏠 返回首頁 

Greasy Fork is available in English.

VIP视频全解析

解析并破解各大视频站的VIP权限 纯净无广告

  1. // ==UserScript==
  2. // @name VIP视频全解析
  3. // @namespace https://www.love599.net/
  4. // @version 3.5
  5. // @description 解析并破解各大视频站的VIP权限 纯净无广告
  6. // @author love599
  7. // @match *://*.iqiyi.com/*
  8. // @match *://*.youku.com/*
  9. // @match *://*.le.com/*
  10. // @match *://*.letv.com/*
  11. // @match *://v.qq.com/*
  12. // @match *://*.tudou.com/*
  13. // @match *://*.mgtv.com/*
  14. // @match *://film.sohu.com/*
  15. // @match *://tv.sohu.com/*
  16. // @match *://*.acfun.cn/v/*
  17. // @match *://*.bilibili.com/*
  18. // @match *://vip.1905.com/play/*
  19. // @match *://*.pptv.com/*
  20. // @match *://v.yinyuetai.com/video/*
  21. // @match *://v.yinyuetai.com/playlist/*
  22. // @match *://*.fun.tv/vplay/*
  23. // @match *://*.wasu.cn/Play/show/*
  24. // @exclude *://*.bilibili.com/blackboard/*
  25. // ==/UserScript==
  26. (function() {
  27. 'use strict';
  28. // Your code here...
  29. try{
  30. document.querySelector('#widget-dramaseries').addEventListener('click', function getLink (e){
  31. var target=e.target.parentNode.tagName=="LI"?e.target.parentNode:(e.target.parentNode.parentNode.tagName=="LI"?e.target.parentNode.parentNode:e.target.parentNode.parentNode.parentNode);
  32. if(target.tagName!="LI")return;
  33. location.href=target.childNodes[1].href;
  34. });
  35. }
  36. catch(exception){
  37. }
  38. var div=document.createElement("div");
  39. div.innerHTML='<div id="analysis"><a style="color:#008000;font-size:28px" href="javascript:window.open(\'http://api.love599.net/?url=\'+location.href)">▷</a></div>';
  40. document.body.appendChild(div);
  41. document.getElementById('analysis').style.cssText='z-index:99999;position: fixed;top:200px;left:0';
  42. })();