// ==UserScript== // @name 【优化版】全网VIP视频在线解析播放,白嫖【优酷 腾讯视频 爱奇艺 芒果等视频vip,无广告】 // @description vip视频免费观看,去广告,不花钱看视频,白嫖党专属,支持5大视频网站 优酷 腾讯视频 爱奇艺 芒果的在线免广告解析。 // @namespace http://935593.cn // @version 1.3 // @match *://v.youku.com/v_show/* // @match *://*.iqiyi.com/v_* // @match *://*.iqiyi.com/dianying/* // @match *://*.le.com/ptv/vplay/* // @match *://v.qq.com/x/cover/* // @match *://v.qq.com/x/page/* // @match *://*.mgtv.com/b/* // @match *://film.sohu.com/album/* // @match *://*.acfun.cn/v/* // @match *://*.bilibili.com/video/* // @match *://*.bilibili.com/anime/* // @match *://vip.pptv.com/show/* // @match *://v.yinyuetai.com/video/* // @match *://v.yinyuetai.com/playlist/* // @match *://*.wasu.cn/Play/show/* // @require https://cdn.jsdelivr.net/npm/jquery@2.2.4/dist/jquery.min.js // @run-at document-end // @grant unsafeWindow // @downloadURL none // ==/UserScript== (function() { 'use strict'; window.$ = $ var curPlaySite = ''; var curWords = ''; var YouKu = /youku/i; var IQIYI = /iqiyi/i; var Tencent = /qq/i; var Tudou = /tudou/i; var vipBtn = 'vip解析'; var mSearchBtn = '搜索电影'; $('#hlbVipBtn').css({'font-size':'12px','display':'inline-block','height':'24px','line-height':'24px','margin':'0 10px','vertical-align':'bottom'}); $('#hlbSearchBtn').css({'font-size':'12px','display':'inline-block','height':'24px','line-height':'24px','margin':'0 10px','vertical-align':'bottom'}); if(YouKu.test(window.location.href)){ var youkuTitle = $('#left-title-content-wrap').find('.subtitle'); if(youkuTitle.length !== 0){ youkuTitle.before(vipBtn).before(mSearchBtn); curWords = document.getElementsByClassName("title-link")[0].title; $('#hlbSearchBtn').attr('href','http://www.houzi365.cn/index.php/vod/search.html?wd=' + curWords); } } if(Tencent.test(window.location.href)){ var qqTitle = $('.mod_intro').find('.video_title'); qqTitle.eq(0).before(vipBtn).before(mSearchBtn); if($('.player_title').length !== 0 && $('.player_title').find('a').length === 0){ curWords = $('.player_title').text(); }else{ curWords = $('._base_title').text(); } if(curWords === ''){ curWords = $('.player_title').text(); } $('#hlbSearchBtn').attr('href','http://www.houzi365.cn/index.php/vod/search.html?wd=' + curWords); } if(Tudou.test(window.location.href)){ var tdTitle = $('#videoKw'); tdTitle.parent('.fix').append(vipBtn); } if(Mango.test(window.location.href)){//title e-txthide2 var mgTitle = $(".title.e-txthide2")[0]; mgTitle.append(vipBtn).append(mSearchBtn); curWords = mgTitle.text(); $('#hlbSearchBtn').attr('href','http://www.houzi365.cn/index.php/vod/search.html?wd=' + curWords); } if(IQIYI.test(window.location.href)){ const iqiyiTitle = $('.qy-player-title') iqiyiTitle.before(vipBtn); $('#hlbVipBtn').attr('href',"http://vip.jbsou.cn/?url=" + window.location.href); var title = document.getElementsByClassName("qy-player-title")[0].firstElementChild.firstElementChild.title; iqiyiTitle.before(mSearchBtn); $('#hlbSearchBtn').attr('href','http://www.houzi365.cn/index.php/vod/search.html?wd=' + title); } $('#hlbVipBtn').on('click',function(){ curPlaySite = window.location.href; window.location.href = 'http://vip.jbsou.cn/?url=' + curPlaySite; }); })();