// ==UserScript== // @name 解析腾讯,优酷,爱奇艺等全网会员视频,vip视频,添加百度网盘超级会员账号共享 // @namespace https://greasyfork.org/zh-CN/users/704106 // @version 3.0.4 // @icon // @description 解析会员视频,vip视频,支持腾讯,优酷,爱奇艺,芒果,pptv等 // @antifeature The script copies the URL to the parsing site, so the page contains part of the parsing site ads // @author jlmf // @license MIT // @supportURL https://greasyfork.org/zh-CN/users/704106 // @include *://v.youku.com/v_* // @include *://m.youku.com/v* // @include *://m.youku.com/a* // @include *://*.iqiyi.com/v_* // @include *://*.iqiyi.com/w_* // @include *://*.iqiyi.com/a_* // @include *://*.iqiyi.com/dianying/* // @include *://*.le.com/ptv/vplay/* // @include *v.qq.com/x/cover/* // @include *v.qq.com/x/page/* // @include *v.qq.com/play* // @include *://pan.baidu.com/* // @include *://*.tudou.com/listplay/* // @include *://*.tudou.com/albumplay/* // @include *://*.tudou.com/programs/view/* // @include *://*.mgtv.com/b/* // @include *://film.sohu.com/album/* // @include *://tv.sohu.com/* // @include *://*.bilibili.com/video/* // @include *://*.bilibili.com/anime/* // @include *://*.bilibili.com/bangumi/play/* // @include *://vip.pptv.com/show/* // @include *://v.pptv.com/show/* // @include *://*.baofeng.com/play/* // @include *://v.yinyuetai.com/video/* // @include *://v.yinyuetai.com/playlist/* // @include *://vip.1905.com/play/* // @require https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js // @run-at document-idle // @grant unsafeWindow // @grant GM_addStyle // @downloadURL none // ==/UserScript== (function () { 'use strict'; GM_addStyle('.h-icon-play {color: #d926b5;fill: #d926b5;height: 80px;width: 80px;position: fixed;z-index: 99999;top: 0px;left: 0;cursor: pointer;} .h-ol {position: fixed;top: 30px;left: 20px;z-index: 99999;counter-reset: li;list-style: none;font-size: 8px;padding: 0;margin-bottom: 2em;text-shadow: 0 1px 0 rgba(255, 255, 255, .5);display: none;} .h-ol a {position: relative;display: block;padding: 3px 10px 3px 2em;margin: 0.5em 0;background: #ddd;color: #444;text-decoration: none;border-radius: 0.3em;transition: all 0.3s ease-out;} .h-ol a:hover {background: #eee;color: #ff6f5c;transition: all 0.3s ease-out;} .h-ol a::before {content: counter(li);counter-increment: li;position: absolute;left: -1.2em;top: 50%;margin-top: -1.2em;background: #87ceeb;height: 2em;width: 2em;line-height: 2em;border: 0.2em solid #fff;text-align: center;font-weight: bold;border-radius: 2em;}'); let api = [ {"name":"OK解析","url":"https://okjx.cc/?url="}, {"name":"2k","url":"https://vip.2ktvb.com/player/?url="}, {"name":"Parwix","url":"https://vip.parwix.com:4433/player/?url="}, {"name":"mmkv","url":"https://jx.mmkv.cn/tv.php?url="}, {"name":"解析la","url":"https://api.jiexi.la/?url="}, {"name":"1717yun","url":"https://www.1717yun.com/jx/ty.php?url="}, {"name":"ckmov2","url":"https://ckmov.ccyjjd.com/ckmov/?url="}, {"name":"play","url":"https://www.playm3u8.cn/jiexi.php?url="}, {name: 'M1970', url: 'https://z1.m1907.cn/?jx='}, {"name":"盘古","url":"https://www.pangujiexi.cc/jiexi.php?url="}, {"name":"夜幕","url":"https://www.yemu.xyz/?url="}, {"name":"0523","url":"https://go.yh0523.cn/y.cy?url="}, {"name":"administratorw","url":"https://www.administratorw.com/video.php?url="}, {"name":"8090g","url":"https://www.8090g.cn/?url="}, {"name":"laoban","url":"https://vip.laobandq.com/jiexi.php?url="}, {"name":"CHok","url":"https://www.gai4.com/?url="}, {"name":"mw0","url":"https://jx.mw0.cc/?url="}, {"name":"ergan","url":"https://jx.ergan.top/?url="}, {"name":"Hk","url":"https://jx.rdhk.net/?v="}, {"name":"云","url":"https://jx.yunboys.cn/?url="},]; let main = { showButton: function () { if (location.host.match(/youku|iqiyi|le|qq|tudou|baidu|mgtv|sohu|acfun|bilibili|pptv|baofeng|yinyuetai/ig)) { let mainButton = '
'; let apiList = '
    '; let github = ''; (function() { $("body").on('mouseover', '.item a', function(e) { let objfj = $(this), href = objfj.attr('href') || objfj.data("href"); objfj.off('click.chrome'); objfj.on('click.chrome', function() { window.location.href = href }).attr('data-href', href).css({ cursor: 'pointer' }).removeAttr('href') }) })(); $(top.document.body).append(mainButton); $(top.document.body).append(apiList); api.forEach((val, index) => { $('.h-ol').append(`
  1. ${val.name}
  2. `) }); //Feedback button $('.h-ol').append(`
  3. 百度网盘超级会员账号
  4. `); $('.h-ol').append(github); $(top.document.body).on('click', '.h-icon-play', () => { $('.h-ol').fadeToggle('fast'); }); } } }; $(function () { main.showButton(); }); })();